Index: trunk/extensions/CheckUser/patch-cu_cookies.sql |
— | — | @@ -1,6 +0,0 @@ |
2 | | - |
3 | | -ALTER TABLE /*$wgDBprefix*/cu_changes |
4 | | - ADD cuc_cookie_user VARCHAR(255) BINARY default NULL; |
Index: trunk/extensions/CheckUser/CheckUser.php |
— | — | @@ -30,7 +30,7 @@ |
31 | 31 | # It will also be stored during login if the old session data for the usre is |
32 | 32 | # for a different account. (Note that user renames can cause this). |
33 | 33 | # If you have an older version of checkuser without the cuc_cookie_user column, |
34 | | -# run patch-cu_cookies.sql before enabling this |
| 34 | +# run patch-cu_cookie_user.sql before enabling this |
35 | 35 | $wgCURecordCookieData = false; |
36 | 36 | |
37 | 37 | #Recent changes data hook |
Index: trunk/extensions/CheckUser/patch-cu_cookie_user.sql |
— | — | @@ -0,0 +1,6 @@ |
| 2 | +-- Adds the cookie data column needed to enable $wgCURecordCookies
|
| 3 | +-- vim: autoindent syn=mysql sts=2 sw=2
|
| 4 | +-- Replace /*$wgDBprefix*/ with the proper prefix
|
| 5 | +
|
| 6 | +ALTER TABLE /*$wgDBprefix*/cu_changes
|
| 7 | + ADD cuc_cookie_user VARCHAR(255) BINARY default NULL;
|