From 73680f6348954359cef534cf5fc7e7a21c0b7de4 Mon Sep 17 00:00:00 2001 From: rub Date: Fri, 26 Jun 2009 09:57:28 +0000 Subject: Feature 1026: Update column save author_id with value Check user with comment date and registration date git-svn-id: http://piwigo.org/svn/trunk@3464 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/db/83-database.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'install/db/83-database.php') diff --git a/install/db/83-database.php b/install/db/83-database.php index 1f67811ab..94dbc4594 100644 --- a/install/db/83-database.php +++ b/install/db/83-database.php @@ -29,9 +29,16 @@ if (!defined('PHPWG_ROOT_PATH')) $upgrade_description = 'Update column save author_id with value.'; $query = ' -UPDATE '.COMMENTS_TABLE.' AS c , '.USERS_TABLE.' AS u +UPDATE + '.COMMENTS_TABLE.' AS c , + '.USERS_TABLE.' AS u, + '.USER_INFOS_TABLE.' AS i SET c.author_id = u.'.$conf['user_fields']['id'].' -WHERE c.author = u.'.$conf['user_fields']['username'].' AND c.author_id is null +WHERE + c.author_id is null +AND c.author = u.'.$conf['user_fields']['username'].' +AND u.'.$conf['user_fields']['id'].' = i.user_id +AND i.registration_date <= c.date ;'; pwg_query($query); -- cgit v1.2.3