blob: 8247468fc06537a8f2b6d3952be9ae5c588abbf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
// $Header: /cvsroot/bitweaver/_bit_users/admin/admin_userfiles_inc.php,v 1.1 2005/06/19 05:12:23 bitweaver 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.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
if (isset($_REQUEST["userfilesprefs"])) {
$gBitSystem->storePreference("uf_use_db", $_REQUEST["uf_use_db"]);
$gBitSystem->storePreference("uf_use_dir", $_REQUEST["uf_use_dir"]);
$gBitSystem->storePreference("userfiles_quota", $_REQUEST["userfiles_quota"]);
$smarty->assign('uf_use_db', $_REQUEST["uf_use_db"]);
$smarty->assign('uf_use_dir', $_REQUEST["uf_use_dir"]);
$smarty->assign('userfiles_quota', $_REQUEST['userfiles_quota']);
}
?>
|