Closed (won't fix)
Project:
Drupal core
Version:
7.0
Component:
other
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Mar 2011 at 10:31 UTC
Updated:
1 Oct 2012 at 14:10 UTC
Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() (line 933 of /iincludes/bootstrap.inc)
if ($filename) {
include_once DRUPAL_ROOT . '/' . $filename;
$files[$type][$name] = TRUE;
return TRUE;
}
to
if ($filename) {
@include_once DRUPAL_ROOT . '/' . $filename;
$files[$type][$name] = TRUE;
return TRUE;
}
Comments
Comment #1
damien tournoud commentedThis is a parser notice, it means that the file being loaded at this time contains some those deprecated call-time pass-by-reference. Identify which file it is, and file a bug to the incriminated module.
Comment #2
Xaber commentedComment #3
Henning commentedTry with adding the following setting in .htaccess:
php_flag allow_call_time_pass_reference on
Comment #4
Xaber commentedThanks, I'll try it, if the problem persists.
Comment #5
thirstysix commentedHow to find out which modue file have Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() ?..
plz help me.. i tried it all method .. i can't solve this issue..
how will i find out that error (specific line) in my module..
thanks in advance
Comment #6
clemens.tolboom@satheeshkumarr
XRef and see #1071854: Deprecated function