Closed (won't fix)
Project:
Title Rewrite
Version:
5.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Aug 2008 at 11:29 UTC
Updated:
23 Jul 2009 at 15:50 UTC
When you using PHP 4.x there is followed syntax error:
Parse error: parse error, unexpected '=', expecting ')' in title_rewrite/title_rewrite.module on line 207
To fix that, delete default value from reference variable:
From:
function title_rewrite_page_get_title($current_title = NULL, &$node = NULL) {
To:
function title_rewrite_page_get_title($current_title = NULL, &$node) {
Issue tested on PHP 4.3.10
Comments
Comment #1
kenorb commented