01-27-2008, 04:19 AM
|
#1 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
Call Time by pass by Reference Deprecated??? :S
Code:
Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of is_array(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file
I am getting this error at:
PHP Code:
// Try & Catch Exeception try { if (is_array(&$meta)) { // Combines both $html & $meta with their keys and values array_combine( $html, &$meta); } } catch(Exception $meta) { throw new Exeception("The Meta variable is not an Array, please change this"); }
__________________
VillageIdiot can have my babbies ;d
Last edited by Orc : 01-27-2008 at 05:01 AM.
|
|
|
|