Browse Source

Added Log to Session

Tobias Reich 11 years ago
parent
commit
b4226d7bdd
1 changed files with 6 additions and 2 deletions
  1. 6 2
      php/modules/Session.php

+ 6 - 2
php/modules/Session.php

@@ -31,8 +31,12 @@ class Session extends Module {
 		$this->plugins(__METHOD__, 0, func_get_args());
 
 		# Update
-		if (!isset($this->settings['version'])||$this->settings['version']!==$version)
-			if (!Database::update($database, $dbName, @$this->settings['version'])) exit('Error: Updating the database failed!');
+		if (!isset($this->settings['version'])||$this->settings['version']!==$version) {
+			if (!Database::update($database, $dbName, @$this->settings['version'])) {
+				Log::error($database, __METHOD__, __LINE__, 'Updating the database failed');
+				exit('Error: Updating the database failed!');
+			}
+		}
 
 		# Return settings
 		$return['config'] = $this->settings;