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. |