From 7ceb4bf21c26cb2446b5843852ddf1277674068c Mon Sep 17 00:00:00 2001 From: plegall Date: Sat, 26 May 2012 07:48:28 +0000 Subject: remove useless function/configuration due to derivatives git-svn-id: http://piwigo.org/svn/trunk@15316 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/config_default.inc.php | 7 ------- include/functions.inc.php | 24 ------------------------ 2 files changed, 31 deletions(-) (limited to 'include') diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 640cd5609..073b97cc3 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -226,13 +226,6 @@ $conf['representative_cache_on_subcats'] = true; // category and element description. $conf['allow_html_descriptions'] = true; -// prefix_thumbnail : string before filename. Thumbnail's prefix must only -// contain characters among : a to z (case insensitive), "-" or "_". -$conf['prefix_thumbnail'] = 'TN-'; - -// dir_thumbnail : directory where thumbnail reside. -$conf['dir_thumbnail'] = 'thumbnail'; - // users_page: how many users to display in screen // Administration>Identification>Users? $conf['users_page'] = 20; diff --git a/include/functions.inc.php b/include/functions.inc.php index 77e00dd6a..8bd33f35e 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -200,30 +200,6 @@ function mkgetdir($dir, $flags=MKGETDIR_DEFAULT) return true; } -/** - * returns thumbnail directory name of input diretoty name - * make thumbnail directory is necessary - * set error messages on array messages - * - * @param: - * string $dirname - * arrayy $errors - * @return bool false on error else string directory name - */ -function mkget_thumbnail_dir($dirname, &$errors) -{ - global $conf; - - $tndir = $dirname.'/'.$conf['dir_thumbnail']; - if (! mkgetdir($tndir, MKGETDIR_NONE) ) - { - array_push($errors, - '['.$dirname.'] : '.l10n('no write access')); - return false; - } - return $tndir; -} - /* Returns true if the string appears to be encoded in UTF-8. (from wordpress) * @param string Str */ -- cgit v1.2.3