@ tag completion enhancements, show url on hover and respect custom attags

This commit is contained in:
Friendika 2011-10-26 15:14:12 -07:00
parent 1aba538c96
commit 2d22a58324
5 changed files with 37 additions and 7 deletions

View file

@ -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`)
");
}