Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: class_datacache.php 5763 2012-03-22 16:26:53Z Tomm $
| * $Id$
|
*/
class datacache
| */
class datacache
|
Zeile 876 | Zeile 876 |
---|
}
// Do we have any mod tools to use in our forums?
|
}
// Do we have any mod tools to use in our forums?
|
$query = $db->simple_select("modtools", "forums, tid", "type = 't'", array("order_by" => "tid"));
| $query = $db->simple_select("modtools", "forums, tid", '', array("order_by" => "tid"));
|
if($db->num_rows($query)) {
| if($db->num_rows($query)) {
|
Zeile 942 | Zeile 942 |
---|
$query = $db->simple_select("datacache", "title,cache", "title='version_history'"); $this->update("version_history", @unserialize($db->fetch_field($query, "cache")));
|
$query = $db->simple_select("datacache", "title,cache", "title='version_history'"); $this->update("version_history", @unserialize($db->fetch_field($query, "cache")));
|
| }
function reload_modnotes() { global $db;
$query = $db->simple_select("datacache", "title,cache", "title='modnotes'"); $this->update("modnotes", @unserialize($db->fetch_field($query, "cache"))); }
function reload_adminnotes() { global $db;
$query = $db->simple_select("datacache", "title,cache", "title='adminnotes'"); $this->update("adminnotes", @unserialize($db->fetch_field($query, "cache")));
|
} } ?>
| } } ?>
|