From: Chuck Hagenbuch Date: Fri, 13 Nov 2009 20:42:56 +0000 (-0500) Subject: Fix shutdown function name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1d639c8adb138054458d0896fe704b3325786aa7;p=horde.git Fix shutdown function name --- diff --git a/framework/Cli/lib/Horde/Cli.php b/framework/Cli/lib/Horde/Cli.php index a47d71d03..8ff8b5cf4 100644 --- a/framework/Cli/lib/Horde/Cli.php +++ b/framework/Cli/lib/Horde/Cli.php @@ -185,7 +185,7 @@ class Horde_Cli // We really want to call this at the end of the script, not in the // destructor. if ($this->_console) { - register_shutdown_function(array($this, '_shutdown')); + register_shutdown_function(array($this, 'shutdown')); } }