Browse Source

Fixed wrong version in error log

Tobias Reich 10 years ago
parent
commit
7b2414695c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php/database/update_020505.php

+ 1 - 1
php/database/update_020505.php

@@ -10,7 +10,7 @@
 if (!$database->query("SELECT `checksum` FROM `lychee_photos` LIMIT 1;")) {
 	$result = $database->query("ALTER TABLE `lychee_photos` ADD `checksum` VARCHAR(100) DEFAULT NULL");
 	if (!$result) {
-		Log::error($database, 'update_020500', __LINE__, 'Could not update database (' . $database->error . ')');
+		Log::error($database, 'update_020505', __LINE__, 'Could not update database (' . $database->error . ')');
 		return false;
 	}
 }