Changeset 8b34075 in github


Ignore:
Timestamp:
Jul 31, 2012 2:33:49 AM (10 months ago)
Author:
Aleksander Machniak <alec@…>
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.
Message:

Merge branch 'master' of github.com:roundcube/roundcubemail

Conflicts:

program/include/rcube_spellchecker.php

Location:
program/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_config.php

    r9f1652e ra9cbbae  
    253253        } 
    254254 
     255        // larry is the new default skin :-) 
     256        if ($prefs['skin'] == 'default') { 
     257            $prefs['skin'] = 'larry'; 
     258        } 
     259 
    255260        $this->userprefs = $prefs; 
    256261        $this->prop      = array_merge($this->prop, $prefs); 
  • program/include/rcube_spellchecker.php

    rec78f98 r8b34075  
    229229                $suggestions = pspell_suggest($this->plink, $word); 
    230230 
    231                 if (sizeof($suggestions) > self::MAX_SUGGESTIONS) 
     231                if (sizeof($suggestions) > self::MAX_SUGGESTIONS) { 
    232232                    $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS); 
     233                } 
    233234 
    234235                $matches[] = array($word, $pos, $len, null, $suggestions); 
Note: See TracChangeset for help on using the changeset viewer.