diff options
author | patdenice <patdenice@piwigo.org> | 2008-11-24 22:35:56 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-11-24 22:35:56 +0000 |
commit | ac56adb8b16514af0b94540ff27d40bb6a9f4146 (patch) | |
tree | 16abba0e0f024746b9b23f0d9c19061c43c65d9b /plugins/LocalFilesEditor/admin.php | |
parent | 8a4f579994af7e563dce7e107cb57b1a41256e83 (diff) |
- Replace all #content by .content in Sylvia theme.css.
- In LocalFiles Editor, show error message when creating new template file with empty filename.
git-svn-id: http://piwigo.org/svn/trunk@2906 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/admin.php')
-rw-r--r-- | plugins/LocalFilesEditor/admin.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/LocalFilesEditor/admin.php b/plugins/LocalFilesEditor/admin.php index 2cd5e3afa..348fdd0cc 100644 --- a/plugins/LocalFilesEditor/admin.php +++ b/plugins/LocalFilesEditor/admin.php @@ -93,6 +93,10 @@ if ((isset($_POST['edit'])) and !is_numeric($_POST['file_to_edit'])) if (isset($_POST['create_tpl'])) { $filename = $_POST['tpl_name']; + if (empty($filename)) + { + array_push($page['errors'], l10n('locfiledit_empty_filename')); + } if (get_extension($filename) != 'tpl') { $filename .= '.tpl'; @@ -100,19 +104,20 @@ if (isset($_POST['create_tpl'])) if (!preg_match('/^[a-zA-Z0-9-_.]+$/', $filename)) { array_push($page['errors'], l10n('locfiledit_filename_error')); - $newfile_page = true; } if (is_numeric($_POST['tpl_model']) and $_POST['tpl_model'] != '0') { array_push($page['errors'], l10n('locfiledit_model_error')); - $newfile_page = true; } if (file_exists($_POST['tpl_parent'] . '/' . $filename)) { array_push($page['errors'], l10n('locfiledit_file_already_exists')); + } + if (!empty($page['errors'])) + { $newfile_page = true; } - if (!$newfile_page) + else { $edited_file = $_POST['tpl_parent'] . '/' . $filename; $content_file = ($_POST['tpl_model'] == '0') ? $new_file['tpl'] : file_get_contents($_POST['tpl_model']); |