thomascube
2011-08-13 a02cfa9b085fc875fc55f57029a8e5846771ed5e
program/include/rcmail.php
@@ -915,6 +915,21 @@
    return $text;
  }
  /**
   * Check if the given text lable exists
   *
   * @param string Label name
   * @return boolean True if text exists (either in the current language or in en_US)
   */
  public function text_exists($name, $domain=null)
  {
    // load localization files if not done yet
    if (empty($this->texts))
      $this->load_language();
    // check for text with domain first
    return ($domain && isset($this->texts[$domain.'.'.$name])) || isset($this->texts[$name]);
  }
  /**
   * Load a localization package
@@ -1078,6 +1093,9 @@
      if (is_object($book))
        $book->close();
    if (is_object($this->imap))
      $this->imap->close();
    // before closing the database connection, write session data
    if ($_SERVER['REMOTE_ADDR'])
      session_write_close();
@@ -1192,9 +1210,6 @@
        ), true, true);
      }
    }
    if (is_object($this->imap))
      $this->imap->close();
    return $base64 ? base64_encode($cipher) : $cipher;
  }