From: Benjamin Lees Date: Sun, 20 Sep 2009 07:15:19 +0000 (+0000) Subject: Follow up to r56323: fix the broken grant syntax (which I should have tested before... X-Git-Tag: 1.31.0-rc.0~39619 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=6ee6e622b1ebc3f14becc6522ca61b472c0a22c8;p=lhc%2Fweb%2Fwiklou.git Follow up to r56323: fix the broken grant syntax (which I should have tested before committing). --- diff --git a/maintenance/users.sql b/maintenance/users.sql index 9e78b6ad38..1db32ae265 100644 --- a/maintenance/users.sql +++ b/maintenance/users.sql @@ -4,9 +4,9 @@ -- from local settings. -- -GRANT * ON `{$wgDBname}`.* +GRANT ALL PRIVILEGES ON `{$wgDBname}`.* TO '{$wgDBuser}'@'%' IDENTIFIED BY '{$wgDBpassword}'; -GRANT * ON `{$wgDBname}`.* +GRANT ALL PRIVILEGES ON `{$wgDBname}`.* TO '{$wgDBuser}'@localhost IDENTIFIED BY '{$wgDBpassword}'; -GRANT * ON `{$wgDBname}`.* +GRANT ALL PRIVILEGES ON `{$wgDBname}`.* TO '{$wgDBuser}'@localhost.localdomain IDENTIFIED BY '{$wgDBpassword}';