Aleksander Machniak
2014-01-04 7e0d2d9d13ff862597b689bc8cd3195dc065bf9b
Merge branch 'master' of github.com:roundcube/roundcubemail
3 files modified
5 ■■■■■ changed files
program/js/app.js 1 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/html.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_imap.php 2 ●●● patch | view | raw | blame | history
program/js/app.js
@@ -5048,6 +5048,7 @@
  {
    var key = 'G'+prop.source+prop.id;
    if (this.treelist.remove(key)) {
      this.triggerEvent('group_delete', { source:prop.source, id:prop.id });
      delete this.env.contactfolders[key];
      delete this.env.contactgroups[key];
    }
program/lib/Roundcube/html.php
@@ -677,7 +677,7 @@
     */
    public function __construct($attrib = array())
    {
        $default_attrib = self::$doctype == 'xhtml' ? array('summary' => '', 'border' => 0) : array();
        $default_attrib = self::$doctype == 'xhtml' ? array('summary' => '', 'border' => '0') : array();
        $this->attrib = array_merge($attrib, $default_attrib);
        if (!empty($attrib['tagname']) && $attrib['tagname'] != 'table') {
program/lib/Roundcube/rcube_imap.php
@@ -1444,7 +1444,7 @@
    public function search_once($folder = null, $str = 'ALL')
    {
        if (!$str) {
            return 'ALL';
            $str = 'ALL';
        }
        if (!strlen($folder)) {