New fields for the term table, improved query for the tag search. Changed the cache handling for rendered bbcode.

This commit is contained in:
Michael Vogel
2015-03-07 21:24:39 +01:00
parent 67d39770ed
commit 7c4a1a059d
11 changed files with 233 additions and 218 deletions

22
include/tagupdate.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
require_once("boot.php");
require_once("include/tags.php");
global $a, $db;
if(is_null($a))
$a = new App;
if(is_null($db)) {
@include(".htconfig.php");
require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
}
load_config('config');
load_config('system');
update_items();
killme();
?>