Index: trunk/extensions/Translate/utils/MessageGroupCache.php |
— | — | @@ -110,7 +110,8 @@ |
111 | 111 | |
112 | 112 | // Timestamp and existence checks |
113 | 113 | if ( !$this->exists() ) { |
114 | | - return !file_exists( $filename ); |
| 114 | + // Cache is valid if the file doesn't exist or doesn't have translations |
| 115 | + return !file_exists( $filename ) || !count( $group->load( $this->code ) ); |
115 | 116 | } elseif ( !file_exists( $filename ) ) { |
116 | 117 | //$this->delete(); |
117 | 118 | return false; |