Variable enclosure in single quotes (List module)

Issue #665 resolved
Frank Joris created an issue

Variable is being output as literal string because it is between single quotes (voir annexe).

File: modules.mod_aelist/tmpl/list11.php Line: 41

Replace:

$sReturn .= ' <h4><a href="$link">$obj->titre</a></h4>';

With:

$sReturn .= ' <h4><a href="$link">'.$obj->titre.'</a></h4>';

Same for list14.php: replace single quotes by double quotes in line 17 and modify line 79

Comments (3)

  1. Log in to comment