blob: 06dce00d5e899702ac22f0ef21ab5f04b8df2007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
// $Header$
// 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']);
}
|