Changeset 8b34075 in github
- Timestamp:
- Jul 31, 2012 2:33:49 AM (10 months ago)
- Children:
- ec86add
- Parents:
- ec78f98 (diff), cb190c0c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- program/include
- Files:
-
- 2 edited
-
rcube_config.php (modified) (1 diff)
-
rcube_spellchecker.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_config.php
r9f1652e ra9cbbae 253 253 } 254 254 255 // larry is the new default skin :-) 256 if ($prefs['skin'] == 'default') { 257 $prefs['skin'] = 'larry'; 258 } 259 255 260 $this->userprefs = $prefs; 256 261 $this->prop = array_merge($this->prop, $prefs); -
program/include/rcube_spellchecker.php
rec78f98 r8b34075 229 229 $suggestions = pspell_suggest($this->plink, $word); 230 230 231 if (sizeof($suggestions) > self::MAX_SUGGESTIONS) 231 if (sizeof($suggestions) > self::MAX_SUGGESTIONS) { 232 232 $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS); 233 } 233 234 234 235 $matches[] = array($word, $pos, $len, null, $suggestions);
Note: See TracChangeset
for help on using the changeset viewer.
