aboutsummaryrefslogtreecommitdiffstats
path: root/install/db/83-database.php
diff options
context:
space:
mode:
Diffstat (limited to 'install/db/83-database.php')
-rw-r--r--install/db/83-database.php11
1 files changed, 9 insertions, 2 deletions
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);