diff options
-rwxr-xr-x | docs/CHANGELOG | 7 | ||||
-rw-r--r-- | lib/class/stats.class.php | 4 | ||||
-rw-r--r-- | lib/init.php | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 9a68e63a..a5af4c9e 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -3,7 +3,12 @@ -------------------------------------------------------------------------- -------------------------------------------------------------------------- - v.3.3.3-Alpha1 + v.3.3.3-Alpha2 + + + +-------------------------------------------------------------------------- + v.3.3.3-Alpha1 10/28/2006 - Added IP History to admin->users (Thx pb1dft) - Added HTTP auth method, auto-creates a 'user' if the auth user doesn't exist in the database. 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']; |