1
Writing an inventory module I can't seem to pass "op=show" through a smarty template. The "URL" looks ok when I "mouseover" the link but the "op" never gets passed.
Code I've tried:
$row['url'] = "edit.php?op=show&id=$id";
or
$row['url'] = "edit.php?op=show&id='$id'";
$xoopsTpl->append('row',$row);
Template:
<{section name=i loop=$row}>
<{$row[i].id}> |
<{/section}>
Any suggestions are appreciated.
Thanks
Doug P