diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-05 10:56:26 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-05 10:56:26 +0200 |
commit | ee73a723f9fb3d51927b60f6bc38b277adcf58e9 (patch) | |
tree | 594fa8ec279115d091aacade3019cf5d9a5283f3 /program/include | |
parent | 42de33c7dee0dc48e54d317eefd4dac18c317e42 (diff) |
Improvements in garbage collector: created gc() method to run all
gc-related cleanups in one place, added posibility to run gc in
environments without session
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/bc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/bc.php b/program/include/bc.php index 447876d37..a7d7b5ac1 100644 --- a/program/include/bc.php +++ b/program/include/bc.php @@ -62,7 +62,7 @@ function rcmail_url($action, $p=array(), $task=null) function rcmail_temp_gc() { - rcmail::get_instance()->temp_gc(); + rcmail::get_instance()->gc_temp(); } function rcube_charset_convert($str, $from, $to=NULL) |