Fixes an issue on query to word_struct caching in network setting, a=chris

Chris Pollett [2014-07-08 20:Jul:th]
Fixes an issue on query to word_struct caching in network setting, a=chris
Filename
models/phrase_model.php
diff --git a/models/phrase_model.php b/models/phrase_model.php
index d5c295cd1..baabc3104 100755
--- a/models/phrase_model.php
+++ b/models/phrase_model.php
@@ -327,7 +327,7 @@ class PhraseModel extends ParallelModel
             }
             $cache_results = false;
             if(USE_CACHE && $save_timestamp == "" &&
-                $use_cache_if_allowed) {
+                $use_cache_if_allowed && !$network) {
                 $cache_results = $CACHE->get($phrase . $this->index_name);
                 if(QUERY_STATISTICS) {
                     $this->query_info['QUERY'] .=
ViewGit