From ca1be2bf25eab8b601e763faf8d3de9eada68e60 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 18 Jun 2009 10:44:38 +0000 Subject: Fix bug #39875 - Empty error message in UCP folder management when creating folder without name Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9612 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/ucp/ucp_pm_options.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'phpBB/includes/ucp') diff --git a/phpBB/includes/ucp/ucp_pm_options.php b/phpBB/includes/ucp/ucp_pm_options.php index 2d2ff23cab..e80c0672cf 100644 --- a/phpBB/includes/ucp/ucp_pm_options.php +++ b/phpBB/includes/ucp/ucp_pm_options.php @@ -109,6 +109,10 @@ function message_options($id, $mode, $global_privmsgs_rules, $global_rule_condit $db->sql_query($sql); $msg = $user->lang['FOLDER_ADDED']; } + else + { + $msg = $user->lang['FOLDER_NAME_EMPTY']; + } } else { -- cgit v1.2.1