Page 1 of 1

EASY fix - Links in listusertags.php

Posted: Thu Mar 23, 2006 5:42 pm
by Glenn
listusertags.php currently at line 110:

Code: Select all

echo "<td>$oneplugin</td>\n";
With each version I change it to this:

Code: Select all

echo "echo "<td><a href=\"edituserplugin.php?userplugin_id=".$gCms->userplugins[$oneplugin]."\">$oneplugin</a></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.

Thanks!

Re: EASY fix - Links in listusertags.php

Posted: Thu Mar 23, 2006 7:39 pm
by jcolvard
Glenn wrote: listusertags.php currently at line 110:

Code: Select all

echo "<td>$oneplugin</td>\n";
With each version I change it to this:

Code: Select all

echo "echo "<td><a href="edituserplugin.php?userplugin_id=".$gCms->userplugins[$oneplugin]."">$oneplugin</a></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.

Thanks!
hey, thanks for the fix.  i just wanted to point out that td tags in the code are creating problems viewing the actual fix. 

found the fix in the quote so maybe posting the code tags works?

echo "echo "userplugins[$oneplugin]."">$oneplugin\n";

just wanted to make sure that the fix can be seen.

thanks; j

Re: EASY fix - Links in listusertags.php

Posted: Fri Mar 24, 2006 12:20 am
by Ted
Thanks, works great when you take the first echo" off.  It's in svn.

Re: EASY fix - Links in listusertags.php

Posted: Thu Apr 20, 2006 11:36 am
by petert
Ted wrote: Thanks, works great when you take the first echo" off.  It's in svn.
Not in my version :(