Skip to content

Commit

Permalink
framework_pager.tpl needs to use $nav->start, not $start
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/bill/svn/mboxsvn/fsfs/Framework@14 80e225f2-0e39-0410-9162-95cf55914962
  • Loading branch information
shupp committed Sep 24, 2007
1 parent 4cd2dd2 commit b7380c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -7,7 +7,7 @@
<span class="prev disabled">&laquo; Prev</span>
{/if}
{foreach key=key item=val from=$nav->getPageList()}
{if $start == $val}
{if $nav->start == $val}
<a class="page current" href="{$url}{$s}start={$val}">{$key}</a>
{else}
<a class="page" href="{$url}{$s}start={$val}">{$key}</a>
Expand All @@ -18,7 +18,7 @@
{else}
<span class="next disabled">Next &raquo;</span>
{/if}
{if $start < $nav->getEnd()}
{if $nav->start < $nav->getEnd()}
<a class="end" href="{$url}{$s}start={$nav->getEnd()}">&raquo;</a>
{else}
<span class="end disabled">&raquo;</span>
Expand Down
1 change: 1 addition & 0 deletions trunk/package.xml
Expand Up @@ -36,6 +36,7 @@
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes><![CDATA[
* UNRELEASED CODE
* framework_pager.tpl needs to use $nav->start, not $start
* ADODBLite driver now includes adodb exception class
* make $dbDriver private
* fix wrong code example in Framework_Plugin
Expand Down

0 comments on commit b7380c2

Please sign in to comment.