32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Update to version 3.0.0
|
|
*/
|
|
|
|
use Lychee\Modules\Database;
|
|
use Lychee\Modules\Response;
|
|
|
|
// Remove login
|
|
// Login now saved as crypt without md5. Legacy code has been removed.
|
|
$query = Database::prepare($connection, "UPDATE `?` SET `value` = '' WHERE `key` = 'username' LIMIT 1", array(LYCHEE_TABLE_SETTINGS));
|
|
$result = Database::execute($connection, $query, 'update_030000', __LINE__);
|
|
|
|
if ($result===false) Response::error('Could not reset username in database!');
|
|
|
|
$query = Database::prepare($connection, "UPDATE `?` SET `value` = '' WHERE `key` = 'password' LIMIT 1", array(LYCHEE_TABLE_SETTINGS));
|
|
$result = Database::execute($connection, $query, 'update_030000', __LINE__);
|
|
|
|
if ($result===false) Response::error('Could not reset password in database!');
|
|
|
|
// Make public albums private and reset password
|
|
// Password now saved as crypt without md5. Legacy code has been removed.
|
|
$query = Database::prepare($connection, "UPDATE `?` SET `public` = 0, `password` = NULL", array(LYCHEE_TABLE_ALBUMS));
|
|
$result = Database::execute($connection, $query, 'update_030000', __LINE__);
|
|
|
|
if ($result===false) Response::error('Could not reset publicity of photos in database!');
|
|
|
|
// Set version
|
|
if (Database::setVersion($connection, '030000')===false) Response::error('Could not update version of database!');
|
|
|
|
?>
|