Browse Source

replace string "Cute." with "Invalid URL" (reuse of existing string)

Thijs Kinkhorst 18 years ago
parent
commit
9791356483
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/squirrelspell/sqspell_functions.php

+ 1 - 1
plugins/squirrelspell/sqspell_functions.php

@@ -799,7 +799,7 @@ function sqspell_ckMOD($rMOD){
       || strstr($rMOD, '/')
       || strstr($rMOD, '%')
       || strstr($rMOD, "\\")){
-    echo _("Cute.");
+    echo _("Invalid URL");
     exit;
   }
 }