diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-08-26 17:51:01 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-08-26 17:51:01 +0200 |
commit | 184438224cfece0f9797f54340a1353cc67e0b28 (patch) | |
tree | 7ab72eafecc96fcd14b5111b5dddd65168663462 /apps/user_webdavauth/settings.php | |
parent | 72e9a2ce57ee88503db83614cec5ccda71f0b58e (diff) | |
download | nextcloud-server-184438224cfece0f9797f54340a1353cc67e0b28.tar.gz nextcloud-server-184438224cfece0f9797f54340a1353cc67e0b28.zip |
restore the webdavauth app
Diffstat (limited to 'apps/user_webdavauth/settings.php')
-rwxr-xr-x | apps/user_webdavauth/settings.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/user_webdavauth/settings.php b/apps/user_webdavauth/settings.php new file mode 100755 index 00000000000..5bd1af53c92 --- /dev/null +++ b/apps/user_webdavauth/settings.php @@ -0,0 +1,40 @@ +<?php + +/** + * ownCloud - user_webdavauth + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +print_r($_POST); +if($_POST){ + + if(isset($_POST['webdav_url'])){ + OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url'])); + } +} + +// fill template +$tmpl = new OC_Template( 'user_webdavauth', 'settings'); +$tmpl->assign( 'webdav_url', OC_Config::getValue( "user_webdavauth_url" )); + +return $tmpl->fetchPage(); + + + +?> |