diff options
Diffstat (limited to 'phpBB/includes/acp')
| -rw-r--r-- | phpBB/includes/acp/acp_styles.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 0f157ceff3..37cf8d1f72 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -716,7 +716,7 @@ parse_css_file = {PARSE_CSS_FILE}  		$save_changes	= (isset($_POST['save'])) ? true : false;  		// make sure template_file path doesn't go upwards -		$template_file = str_replace('..', '.', $template_file); +		$template_file = preg_replace('#\.{2,}#', '.', $template_file);  		// Retrieve some information about the template  		$sql = 'SELECT template_storedb, template_path, template_name  | 
