Cytat(qqrq @ 26.09.2007, 10:52:08 )

A Total Commandera masz? Przeszukaj cały katalog strony pod kątem plików "*.php" i frazy "function hash_update" i wywal to co znajdziesz.
wyszukalo mi tylko functions.php
wiec nie moge go wywalic... hmm
Do tego niby ten blad sie odwoluje:
Cytat
// ############################################################################
// Updates a hash record either by ID or value and maybe also type
function hash_update($search, $info, $type = null) {
global $DB_site;
$DB_site->query("
UPDATE hive_hash
SET info = '".addslashes(serialize($info))."'
WHERE ".iif(strlen($search) == 32, 'value = "'.addslashes($search).'"', 'hashid = '.intval($search))."
".iif($type !== null, 'AND type = '.intval($type), '')."
");
}