diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cleandb.sh | 2 | ||||
-rwxr-xr-x | bin/decrypt.sh | 2 | ||||
-rwxr-xr-x | bin/indexcontacts.sh | 2 | ||||
-rwxr-xr-x | bin/moduserprefs.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/bin/cleandb.sh b/bin/cleandb.sh index add039364..165d33f38 100755 --- a/bin/cleandb.sh +++ b/bin/cleandb.sh @@ -30,7 +30,7 @@ $primary_keys = array( ); // connect to DB -$RCMAIL = rcmail::get_instance(); +$RCMAIL = rcube::get_instance(); $db = $RCMAIL->get_dbh(); $db->db_connect('w'); diff --git a/bin/decrypt.sh b/bin/decrypt.sh index ff7c43038..7f83f3a7f 100755 --- a/bin/decrypt.sh +++ b/bin/decrypt.sh @@ -60,7 +60,7 @@ if ($argc < 2) { die("Usage: " . basename($argv[0]) . " encrypted-hdr-part [encrypted-hdr-part ...]\n"); } -$RCMAIL = rcmail::get_instance(); +$RCMAIL = rcube::get_instance(); for ($i = 1; $i < $argc; $i++) { printf("%s\n", $RCMAIL->decrypt($argv[$i])); diff --git a/bin/indexcontacts.sh b/bin/indexcontacts.sh index c85a535a7..df403807c 100755 --- a/bin/indexcontacts.sh +++ b/bin/indexcontacts.sh @@ -25,7 +25,7 @@ require_once INSTALL_PATH.'program/include/clisetup.php'; ini_set('memory_limit', -1); // connect to DB -$RCMAIL = rcmail::get_instance(); +$RCMAIL = rcube::get_instance(); $db = $RCMAIL->get_dbh(); $db->db_connect('w'); diff --git a/bin/moduserprefs.sh b/bin/moduserprefs.sh index 9bbc885a6..8a9725fa4 100755 --- a/bin/moduserprefs.sh +++ b/bin/moduserprefs.sh @@ -47,7 +47,7 @@ $pref_name = trim($args[0]); $pref_value = $args['delete'] ? null : trim($args[1]); // connect to DB -$rcmail = rcmail::get_instance(); +$rcmail = rcube::get_instance(); $db = $rcmail->get_dbh(); $db->db_connect('w'); |