All empty double-quoted strings replaced with single-quotes
[core.git] / inc / includes.php
index 246a53253fa8d30b67589d85fece2989023ae28a..367399ad841f1c9d000a766d9bd8bb74f5d1c235 100644 (file)
@@ -56,7 +56,7 @@ if (!empty($_GET['app'])) {
 $application = htmlentities(strip_tags($application), ENT_QUOTES);
 
 // Secure it a little more with a reg.exp.
-$application = preg_replace('/([^a-z0-9_-])+/i', "", $application);
+$application = preg_replace('/([^a-z0-9_-])+/i', '', $application);
 
 // Set the application name for later usage
 $cfg->setConfigEntry('app_name', $application);