Parcourir la source

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

Thijs Kinkhorst il y a 18 ans
Parent
commit
9791356483
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;
   }
 }