summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2012-03-06 12:18:57 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2012-03-06 12:18:57 -0500
commit34b0eaf23341c00dae5a809249445549f5abbc53 (patch)
tree781bf6742b1d07eb9f5615c47919bf3b251f1e6d /templates
parent08a4f848be123b9ac3a1b59e0ce0821e6df9fe26 (diff)
downloadampache-34b0eaf23341c00dae5a809249445549f5abbc53.tar.gz
ampache-34b0eaf23341c00dae5a809249445549f5abbc53.tar.bz2
ampache-34b0eaf23341c00dae5a809249445549f5abbc53.zip
Clean up uses of Config::set and Config::set_by_array
Consistently pass in a boolean instead of a string or an int for the clobber flag.
Diffstat (limited to 'templates')
-rw-r--r--templates/list_header.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/list_header.inc.php b/templates/list_header.inc.php
index 2ace6f0e..26366a18 100644
--- a/templates/list_header.inc.php
+++ b/templates/list_header.inc.php
@@ -41,7 +41,7 @@ $uid = Config::get('list_header_uid');
$sides = 5;
// ++ the uid
-Config::set('list_header_uid', $uid + 1, 1);
+Config::set('list_header_uid', $uid + 1, true);
// Next
$next_offset = $start + $limit;