fix php5 mistakes and remove disabled code. disabled code might be used to make sure
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 20 May 2005 07:42:09 +0000 (07:42 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 20 May 2005 07:42:09 +0000 (07:42 +0000)
that list of dictionaries is correct, but it can delete old user's dictionaries.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9427 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/squirrelspell/modules/forget_me.mod
plugins/squirrelspell/modules/forget_me_not.mod
plugins/squirrelspell/modules/lang_change.mod
plugins/squirrelspell/setup.php
plugins/squirrelspell/sqspell_functions.php

index b137663d209396a7708c934b6396264666f92a16..e53e0d1d8ddde101fb2f3b009955f8cfda90a088 100644 (file)
@@ -48,7 +48,7 @@ if (! empty($words_ary)){
   $new_words_ary = array();
   foreach ($lang_words as $word){
       if (! in_array($word,$words_ary)) {
-          $new_words_ary[].= $word;
+          $new_words_ary[]=$word;
       }
   }
   // save it
index c85dbea95a36c2247107b6f1dc4c0d12107e8957..e787a14583839d6b6a7bd7f2391f5d769db4f59b 100644 (file)
@@ -40,7 +40,7 @@ if (empty($old_words)){
     $word_dic = $new_words;
 } else {
     foreach($new_words as $new_word) {
-        $old_words[].=$new_word;
+        $old_words[]=$new_word;
     }
     // make sure that dictionary contains only unique values
     $word_dic = array_unique($old_words);
index cc80c3d6c54453bc9e54e92cfaa8187ed4717dc2..61d0b4936e7455dbd0f0328441590a7c4a9913e8 100644 (file)
@@ -32,7 +32,7 @@ if (! sqgetGlobalVar('lang_default',$lang_default,SQ_POST)) {
 $new_langs = array($lang_default);
 foreach ($use_langs as $lang) {
     if (! in_array($lang,$new_langs)) {
-        $new_langs[].=$lang;
+        $new_langs[]=$lang;
     }
 }
 
index f8017a373447238283a1cf9fc8ed9bfe2c598048..a404a6243a8e7d1823f813256a6ca9642c714ed1 100644 (file)
@@ -107,7 +107,7 @@ function squirrelspell_upgrade() {
       $new_words=array();
       foreach($aLang_words as $word) {
         if (! preg_match("/^#/",$word) && trim($word)!='') {
-          $new_words[].=$word;
+          $new_words[]=$word;
         }
       }
       sqspell_writeWords($new_words,$lang);
index cbf38b99d88fc874e39efcbc9b76fbcfaf6ca5ee..ad871e31b1d221f19b73d4927de067a3f84ccff7 100644 (file)
@@ -305,7 +305,7 @@ function sqspell_getSettings(){
         $aLangs = explode(',',$sLangs);
         foreach ($aLangs as $lang) {
             if (array_key_exists($lang,$SQSPELL_APP)) {
-                $ret[].=$lang;
+                $ret[]=$lang;
             }
         }
     }
@@ -357,17 +357,6 @@ function sqspell_getSettings_old($words){
        */
       preg_match("/# LANG: (.*)/i", $words, $matches);
       $langs=explode(", ", $matches[1]);
-
-      // make sure that langs are contains values that are present in
-      /*
-      $rebuild_langs=array();
-      foreach ($langs as $lang) {
-          if (array_key_exists($lang,$SQSPELL_APP)) {
-              $rebuild_langs[].=$lang;
-          }
-      }
-      $langs=$rebuild_langs;
-      */
     } else {
       /**
        * User doesn't have a personal dictionary. Grab the default
@@ -442,7 +431,7 @@ function sqspell_getLang($lang) {
   $aWords=array();
   foreach (explode(',',$sWords) as $word) {
     if (trim($word) !='') {
-      $aWords[].=trim($word);
+      $aWords[]=trim($word);
       }
   }
   return $aWords;