summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-03-01 20:16:04 +0000
committerChristian Fowler <spider@viovio.com>2006-03-01 20:16:04 +0000
commit53e46ade8c180f1dd0802426bcea7a79ffe103b3 (patch)
tree08295b874dae7118acb9d4f22503ad4dd4f5b1b4 /index.php
parent325708e3a980575488fc2a4035896d198e2906f3 (diff)
downloadcalendar-53e46ade8c180f1dd0802426bcea7a79ffe103b3.tar.gz
calendar-53e46ade8c180f1dd0802426bcea7a79ffe103b3.tar.bz2
calendar-53e46ade8c180f1dd0802426bcea7a79ffe103b3.zip
move BitSystem:: preferences methods to get/set/load/storeConfig to avoid conflict with new content preferences
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 1fd78fd..39a8a15 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_calendar/index.php,v 1.40 2006/02/08 22:01:04 squareing Exp $
+// $Header: /cvsroot/bitweaver/_bit_calendar/index.php,v 1.41 2006/03/01 20:16:03 spiderr Exp $
// Copyright( c ) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
@@ -124,7 +124,7 @@ for( $i = 0; $i < WEEK_OFFSET; $i++ ) {
$gBitSmarty->assign( 'dayNames', $dayNames );
// TODO: make this a pref
-$gBitSmarty->assign( 'trunc', $gBitSystem->getPreference( 'title_truncate', 12 ) );
+$gBitSmarty->assign( 'trunc', $gBitSystem->getConfig( 'title_truncate', 12 ) );
$gBitSystem->display( 'bitpackage:calendar/calendar.tpl', tra( 'Calendar' ) );
?>