summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-26 15:58:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-26 15:58:17 +0000
commit98e8ac3d86bbccaea855dbb6560a8fffc2e3d8eb (patch)
tree10172e54d77477d4014c5a397299883bcb8ab001 /roundcubemail/program
parentab4b1656679d47d6808840c1f238d2524125d4ba (diff)
- fix typos
git-svn-id: https://svn.roundcube.net/trunk@3564 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_imap.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index 9facb322d..7a1ce4787 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/program/include/rcube_imap.php
@@ -92,7 +92,7 @@ class rcube_imap
*/
function connect($host, $user, $pass, $port=143, $use_ssl=null)
{
- // check for Open-SSL support in PHP build
+ // check for OpenSSL support in PHP build
if ($use_ssl && extension_loaded('openssl'))
$this->options['ssl_mode'] = $use_ssl == 'imaps' ? 'ssl' : $use_ssl;
else if ($use_ssl) {
@@ -3150,7 +3150,7 @@ class rcube_imap
if (!$this->caching_enabled)
return;
- // check for an existing record (probly headers are cached but structure not)
+ // check for an existing record (probably headers are cached but structure not)
if (!$force) {
$sql_result = $this->db->query(
"SELECT message_id".