mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user