diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-07-08 21:28:36 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-07-08 21:28:36 +0200 |
commit | e12d58a75cf0fa32e935caa9e53cb2db953d8409 (patch) | |
tree | e7e0cdb4dc356e67e1a2982d99337a3940fc9d7c /include/dir_fns.php | |
parent | f6cf992aee86e69d1ea5790c22d4af40c266d79e (diff) | |
download | volse-hubzilla-e12d58a75cf0fa32e935caa9e53cb2db953d8409.tar.gz volse-hubzilla-e12d58a75cf0fa32e935caa9e53cb2db953d8409.tar.bz2 volse-hubzilla-e12d58a75cf0fa32e935caa9e53cb2db953d8409.zip |
fix typo to make directory safe mode default to on work again
Diffstat (limited to 'include/dir_fns.php')
-rw-r--r-- | include/dir_fns.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index be8175d06..83073154a 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -82,7 +82,7 @@ function get_directory_setting($observer, $setting) { if($ret === false) $ret = get_config('directory', $setting); - if($setting == 'safe_mode' && $ret === false) + if($setting == 'safemode' && $ret === false) $ret = 1; return $ret; |