diff options
author | Friendika <info@friendika.com> | 2011-10-26 15:14:12 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-26 15:14:12 -0700 |
commit | 2d22a58324194ebb37b042658db5a8fc2d94b3a7 (patch) | |
tree | e89ebc83c48863b03181eecd7f31002c45e44ccb /update.php | |
parent | 1aba538c96628468b84136386496ccc69050e810 (diff) | |
download | volse-hubzilla-2d22a58324194ebb37b042658db5a8fc2d94b3a7.tar.gz volse-hubzilla-2d22a58324194ebb37b042658db5a8fc2d94b3a7.tar.bz2 volse-hubzilla-2d22a58324194ebb37b042658db5a8fc2d94b3a7.zip |
@ tag completion enhancements, show url on hover and respect custom attags
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/update.php b/update.php index c85962691..8f1cee75b 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1098 ); +define( 'UPDATE_VERSION' , 1099 ); /** * @@ -806,6 +806,29 @@ function update_1097() { ADD INDEX (`created`), ADD INDEX (`last`), ADD INDEX (`network`), - ADD INDEX (`batch`) "); + ADD INDEX (`batch`) + "); } +function update_1098() { + q("ALTER TABLE `contact` + ADD INDEX (`network`), + ADD INDEX (`name`), + ADD INDEX (`nick`), + ADD INDEX (`attag`), + ADD INDEX (`url`), + ADD INDEX (`addr`), + ADD INDEX (`batch`) + "); +} + + + + + + + + + + + |