From 98c4a922621fd2df37a1204c09b06594f20536ea Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Sun, 29 Oct 2006 01:45:05 +0000 Subject: initial commit for 3.3.3-alpha2 --- lib/class/stats.class.php | 4 ++++ lib/init.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/class/stats.class.php b/lib/class/stats.class.php index 057d2534..004e7b46 100644 --- a/lib/class/stats.class.php +++ b/lib/class/stats.class.php @@ -61,6 +61,10 @@ class Stats { " VALUES ('$type','$oid','$date','$user')"; $db_results = mysql_query($sql,dbh()); + if (!$db_results) { + debug_event('statistics','Unabled to insert statistics:' . $sql,'3'); + } + } // insert /** diff --git a/lib/init.php b/lib/init.php index dc6f79d3..ae4cabbd 100644 --- a/lib/init.php +++ b/lib/init.php @@ -73,7 +73,7 @@ if (!$results = read_config($configfile,0)) { } /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.3.3-Alpha1'; +$results['version'] = '3.3.3-Alpha2 Build (001)'; $results['raw_web_path'] = $results['web_path']; $results['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['web_path']; -- cgit