diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/update.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php index 9c9b6129a..175b89285 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1101 ); +define( 'UPDATE_VERSION' , 1102 ); /** * @@ -1143,4 +1143,11 @@ ADD INDEX ( `xchat_edited` ) "); return UPDATE_SUCCESS; return UPDATE_FAILED; } -
\ No newline at end of file + + +function update_r1101() { + $r = q("update updates set ud_flags = 2 where ud_flags = (-1)"); + $r = q("update updates set ud_flags = 0 where ud_flags = 4096"); + return UPDATE_SUCCESS; +} + |