Community « Discussion forum « Bug tracker « New error after upgrading to version 6.9 [fixed] «
Comment: New error after upgrading to version 6.9 [fixed]
Jan,
In order to enhance response times YACS 6.9 attempts to avoid data copies by using references to memory buffers.
The reported error message says that in the template there is a call to a library function that is now expecting a reference instead of actual data.
To sort this out, you should look at line 376 of template.php, and use intermediate variables as follows.
If you had:
Change it to:
If don't know how to proceed, call me tomorrow morning at the office, after 11am.
The reported error message says that in the template there is a call to a library function that is now expecting a reference instead of actual data.
To sort this out, you should look at line 376 of template.php, and use intermediate variables as follows.
If you had:
call_to_library('actual parameter');
Change it to:
$my_variable = 'actual parameter';
call_to_library($my_variable);
If don't know how to proceed, call me tomorrow morning at the office, after 11am.
by Bernard on Nov. 14 2006
