diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-08 22:39:38 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-08 22:39:38 +0000 |
commit | 04bcb58be993a4662893f55fbd1c91bc5325fbdc (patch) | |
tree | 064a1aebc90d693d2cbc98ffad72a4b60a23acb6 /templates/list_header.inc.php | |
parent | 1dff2461c76c142deafccecea3367a0e408fe989 (diff) | |
download | ampache-04bcb58be993a4662893f55fbd1c91bc5325fbdc.tar.gz ampache-04bcb58be993a4662893f55fbd1c91bc5325fbdc.tar.bz2 ampache-04bcb58be993a4662893f55fbd1c91bc5325fbdc.zip |
move over to query class as backend for browse
Diffstat (limited to 'templates/list_header.inc.php')
-rw-r--r-- | templates/list_header.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/list_header.inc.php b/templates/list_header.inc.php index 63bf45db..5f71f80e 100644 --- a/templates/list_header.inc.php +++ b/templates/list_header.inc.php @@ -28,7 +28,7 @@ // Pull these variables out to allow shorthand (easier for lazy programmers) $limit = Config::get('offset_limit') ? Config::get('offset_limit') : '25'; -$start = Browse::$start; +$start = Browse::get_start(); $total = Browse::$total_objects; $uid = Config::get('list_header_uid'); $sides = 5; |