diff options
| -rw-r--r-- | calculate_quota_inc.php | 4 | ||||
| -rw-r--r-- | index.php | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/calculate_quota_inc.php b/calculate_quota_inc.php index ac04803..bb56389 100644 --- a/calculate_quota_inc.php +++ b/calculate_quota_inc.php @@ -1,6 +1,6 @@ <?php /** - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ * @package quota * * settings that are useful to know about at upload time @@ -13,7 +13,7 @@ require_once( QUOTA_PKG_PATH.'LibertyQuota.php' ); $quota = new LibertyQuota(); if( !$gBitUser->isAdmin() && !$quota->isUserUnderQuota( $gBitUser->mUserId ) ) { - $gBitSystem->display( 'bitpackage:quota/over_quota.tpl', tra( 'You are over your quota.' ) ); + $gBitSystem->display( 'bitpackage:quota/over_quota.tpl', tra( 'You are over your quota.' ) , array( 'display_mode' => 'display' )); die; } @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_quota/index.php,v 1.4 2006/05/18 18:37:49 squareing Exp $ + * $Header: /cvsroot/bitweaver/_bit_quota/index.php,v 1.5 2008/06/25 22:21:21 spiderr Exp $ * * Copyright (c) 2004 bitweaver.org * Copyright (c) 2003 tikwiki.org @@ -8,7 +8,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: index.php,v 1.4 2006/05/18 18:37:49 squareing Exp $ + * $Id: index.php,v 1.5 2008/06/25 22:21:21 spiderr Exp $ * @package quota */ @@ -21,5 +21,5 @@ $gBitSystem->verifyPackage( 'quota' ); require_once( QUOTA_PKG_PATH.'quota_inc.php' ); -$gBitSystem->display( 'bitpackage:quota/quota.tpl', 'View Quota' ); +$gBitSystem->display( 'bitpackage:quota/quota.tpl', 'View Quota' , array( 'display_mode' => 'display' )); ?> |
