blob: 86ab36ba470afe95325a130da08a4a97542cabb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
// $Header: /cvsroot/bitweaver/_bit_users/admin/admin_userfiles_inc.php,v 1.7 2009/10/01 14:17:06 wjames5 Exp $
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
if (isset($_REQUEST["userfilesprefs"])) {
$gBitSystem->storeConfig("users_uf_use_db", $_REQUEST["users_uf_use_db"], USERS_PKG_NAME);
$gBitSystem->storeConfig("uf_use_dir", $_REQUEST["uf_use_dir"], USERS_PKG_NAME);
$gBitSystem->storeConfig("users_userfiles_quota", $_REQUEST["users_userfiles_quota"], USERS_PKG_NAME);
$gBitSmarty->assign('users_uf_use_db', $_REQUEST["users_uf_use_db"]);
$gBitSmarty->assign('uf_use_dir', $_REQUEST["uf_use_dir"]);
$gBitSmarty->assign('users_userfiles_quota', $_REQUEST['users_userfiles_quota']);
}
?>
|