Code: Select all
echo "<td>$oneplugin</td>\n";
Code: Select all
echo "echo "<td><a href=\"edituserplugin.php?userplugin_id=".$gCms->userplugins[$oneplugin]."\">$oneplugin</a></td>\n";
Thanks!
Code: Select all
echo "<td>$oneplugin</td>\n";
Code: Select all
echo "echo "<td><a href=\"edituserplugin.php?userplugin_id=".$gCms->userplugins[$oneplugin]."\">$oneplugin</a></td>\n";
hey, thanks for the fix. i just wanted to point out that td tags in the code are creating problems viewing the actual fix.Glenn wrote: listusertags.php currently at line 110:
With each version I change it to this:Code: Select all
echo "<td>$oneplugin</td>\n";
Can we make that permanent? It's much easier when developing user tags (which I often have to modify 50 times before it works) to click the tag name instead of the icon way over on the right.Code: Select all
echo "echo "<td><a href="edituserplugin.php?userplugin_id=".$gCms->userplugins[$oneplugin]."">$oneplugin</a></td>\n";
Thanks!
Not in my versionTed wrote: Thanks, works great when you take the first echo" off. It's in svn.