mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 02:45:16 +02:00
@ tag completion enhancements, show url on hover and respect custom attags
This commit is contained in:
parent
1aba538c96
commit
2d22a58324
5 changed files with 37 additions and 7 deletions
27
update.php
27
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`)
|
||||
");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue