diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-25 02:51:03 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-25 02:51:03 +0000 |
commit | 81b0dff16654dd67bc15937bd653fc3f65475359 (patch) | |
tree | 7996b36b04f8a831b051142c251ad0b522e5b200 /templates | |
parent | e32557bf900153c5cfb0d2f28640aa9091ef7488 (diff) | |
download | ampache-81b0dff16654dd67bc15937bd653fc3f65475359.tar.gz ampache-81b0dff16654dd67bc15937bd653fc3f65475359.tar.bz2 ampache-81b0dff16654dd67bc15937bd653fc3f65475359.zip |
track ip history, fix pagination on admin/user and fix some acl stuff that I forgot about
Diffstat (limited to 'templates')
-rw-r--r-- | templates/list_header.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/list_header.inc b/templates/list_header.inc index 7be4ca35..32ef6b76 100644 --- a/templates/list_header.inc +++ b/templates/list_header.inc @@ -45,7 +45,7 @@ if ($prev_offset < 0) { $prev_offset = '0'; } $pages = ceil($total_items/$GLOBALS['view']->offset_limit); /* Calculate current page and how many we have on each side */ -$page_data = array(); +$page_data = array('up'=>array(),'down'=>array()); // Can't Divide by 0 if ($GLOBALS['view']->offset > 0) { |