View Single Post
  #205  
Old 9th March 2010, 08:29
tekmobile tekmobile is offline
Senior Member
 
Join Date: Jul 2009
United Kingdom
Posts: 16
Default
Quote:
Originally Posted by joeroberts View Post
hash_where_arr
is in include/benc.php
Code:
function hash_where_arr($name, $hash_arr) {
        $new_hash_arr = Array();
        foreach ($hash_arr as $hash) {
                $new_hash_arr[] = sqlesc((urldecode($hash)));
        }
        return $name." IN ( ".implode(", ",$new_hash_arr)." )";
}
Thanks a million there was no function by that name in the benc.php I added the hash_where_arr() code you supplied and it fixed it straight away.

I have had my site live now for almost a year and never had scrape working that function never existed in the original code.
Reply With Quote