Procházet zdrojové kódy

Port Thijs fix (rev.13790) to DEVEL: no words must be an empty array, not a string, to prevent notices when later array operations are done on $words.

pdontthink před 16 roky
rodič
revize
79cebcc00d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      functions/strings.php

+ 1 - 1
functions/strings.php

@@ -354,7 +354,7 @@ function sqWordWrap(&$line, $wrap, $charset='') {
     if (isset($regs[2])) {
     if (isset($regs[2])) {
         $words = explode(' ', $regs[2]);
         $words = explode(' ', $regs[2]);
     } else {
     } else {
-        $words = '';
+        $words = array();
     }
     }
 
 
     $i = 0;
     $i = 0;