From: <var...@us...> - 2011-04-05 15:13:42
|
Revision: 8018 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8018&view=rev Author: vargenau Date: 2011-04-05 15:13:36 +0000 (Tue, 05 Apr 2011) Log Message: ----------- No need to translate that Modified Paths: -------------- trunk/themes/default/templates/pagelink.tmpl Modified: trunk/themes/default/templates/pagelink.tmpl =================================================================== --- trunk/themes/default/templates/pagelink.tmpl 2011-04-05 14:16:50 UTC (rev 8017) +++ trunk/themes/default/templates/pagelink.tmpl 2011-04-05 15:13:36 UTC (rev 8018) @@ -15,16 +15,16 @@ ?> <tr><td width="100%" colspan="<?php echo $COLS ?>"><table width="100%"><tr class="wikipaging"> <td class="wikipaging<?php echo $PREV ? "-enabled" : "-disabled" ?>" align="left"> - <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK),_("|<<")) : _("|<<") ?> + <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK), "|<<") : "|<<" ?> - <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK),_("<< Prev")) : _("<<") ?> + <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK), "<< " . _("Prev")) : "<<" ?> </td> <td class="wikipaging-enabled" align="center"> <?php echo fmt(" - %d / %d - ", $ACTPAGE, $NUMPAGES) ?> </td> <td class="wikipaging<?php echo $NEXT ? "-enabled" : "-disabled" ?>" align="right"> - <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK),_("Next >>")) : _(">>") ?> + <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK), _("Next") . " >>") : ">>" ?> - <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK),_(">>|")) : _(">>|") ?> + <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK), ">>|") : ">>|" ?> </td> </tr></table></td></tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2014-06-04 13:11:32
|
Revision: 8865 http://sourceforge.net/p/phpwiki/code/8865 Author: vargenau Date: 2014-06-04 13:11:28 +0000 (Wed, 04 Jun 2014) Log Message: ----------- Avoid 2 class attributes Modified Paths: -------------- trunk/themes/default/templates/pagelink.tmpl Modified: trunk/themes/default/templates/pagelink.tmpl =================================================================== --- trunk/themes/default/templates/pagelink.tmpl 2014-06-04 13:08:43 UTC (rev 8864) +++ trunk/themes/default/templates/pagelink.tmpl 2014-06-04 13:11:28 UTC (rev 8865) @@ -12,7 +12,7 @@ } ?> <tr><td style="width:100%" colspan="<?php echo $COLS ?>"><table class="fullwidth wikipaging"><tr class="wikipaging"> - <td class="wikipaging<?php echo $PREV ? "-enabled" : "-disabled" ?>" class="align-left"> + <td class="align-left wikipaging<?php echo $PREV ? "-enabled" : "-disabled" ?>"> <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK), "|<<") : "|<<" ?> <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK), "<< " . _("Prev")) : "<<" ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2016-07-19 14:26:35
|
Revision: 9883 http://sourceforge.net/p/phpwiki/code/9883 Author: vargenau Date: 2016-07-19 14:26:32 +0000 (Tue, 19 Jul 2016) Log Message: ----------- Avoid "<<" in templates when not a plugin Modified Paths: -------------- trunk/themes/default/templates/pagelink.tmpl Modified: trunk/themes/default/templates/pagelink.tmpl =================================================================== --- trunk/themes/default/templates/pagelink.tmpl 2016-07-17 10:57:56 UTC (rev 9882) +++ trunk/themes/default/templates/pagelink.tmpl 2016-07-19 14:26:32 UTC (rev 9883) @@ -13,16 +13,16 @@ ?> <tr><td style="width:100%" colspan="<?php echo $COLS ?>"><table class="fullwidth wikipaging"><tr class="wikipaging"> <td class="align-left wikipaging<?php echo $PREV ? "-enabled" : "-disabled" ?>"> - <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK), "|<<") : "|<<" ?> + <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK), '|<'.'<') : '|<'.'<' ?> - <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK), "<< " . _("Prev")) : "<<" ?> + <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK), '<'.'< ' . _('Prev')) : '<'.'<' ?> </td> <td class="wikipaging-enabled align-center"> <?php echo fmt(" - %d / %d - ", $ACTPAGE, $NUMPAGES) ?> </td> <td class="align-right wikipaging<?php echo $NEXT ? "-enabled" : "-disabled" ?>"> - <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK), _("Next") . " >>") : ">>" ?> + <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK), _('Next') . ' >>') : '>>' ?> - <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK), ">>|") : ">>|" ?> + <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK), '>>|') : '>>|' ?> </td> </tr></table></td></tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |