diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
commit | eea11ecdde396ffc261c20ab930120612260d931 (patch) | |
tree | 5d3f79d6ceea27ca5e899b3f6a068f4d422f8feb /program/lib | |
parent | d2e3a22d24190c02741e8a67ff1fd8601fe17e07 (diff) |
Move rcube_installer class to include/rcmail_installer in order to remain accessible by the update script even if the installer directory was removed
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index 7d28dce13..707929951 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -1207,8 +1207,8 @@ class rcube } // installer - if (class_exists('rcube_install', false)) { - $rci = rcube_install::get_instance(); + if (class_exists('rcmail_install', false)) { + $rci = rcmail_install::get_instance(); $rci->raise_error($arg); return; } |