From 9bafdff17166028ed7448487d0ca8a19f3c2fbb3 Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 16 Jul 2005 14:29:35 +0000 Subject: - new feature : RSS notification feed. Feed generator is an external tool (FeedCreator class v1.7.2). New file feed.php - new database field : comments.validation_date (datetime). This field is required for notification feed. - new database field : users.feed_id (varchar(50)). users.feed_id is an alias of users.id but is much more complicated to find (50 characters, figures or letters, case sensitive) : the purpose is to keep it secret (as far as possible). - new database field : users.last_feed_check (datetime) - new database field : users.registration_date (datetime) - bug fixed : no need to add the (unavailable) session id to install.php in the installation form. - modified database field : images.date_available become more precise (date to datetime). This precision is needed for notification feed. - new index : comments_i1 (validation_date). Might be useful for feed queries. - new index : comments_i2 (image_id). Useful each time you want to have informations about an element and its associated comments. - version 9.11 of mysqldump outputs database field names and table names with backquote "`" (didn't find how to take them off) git-svn-id: http://piwigo.org/svn/trunk@801 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/update.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'admin/update.php') diff --git a/admin/update.php b/admin/update.php index bfc3236fc..b0e26a3f7 100644 --- a/admin/update.php +++ b/admin/update.php @@ -31,7 +31,9 @@ if (!defined('PHPWG_ROOT_PATH')) } include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php'); -define('CURRENT_DATE', date('Y-m-d')); +list($dbnow) = mysql_fetch_row(pwg_query('SELECT NOW();')); +define('CURRENT_DATE', $dbnow); + $error_labels = array('PWG-UPDATE-1' => $lang['update_wrong_dirname_short'], 'PWG-UPDATE-2' => $lang['update_missing_tn_short']); $errors = array(); -- cgit v1.2.3