Skip to content

Commit

Permalink
Fix broken function prototype
Browse files Browse the repository at this point in the history
Fixes this error:

PHP Fatal error:  Declaration of Horde_Themes_Css_Cache_Horde_Cache::process() must be compatible
with that of Horde_Themes_Css_Cache::process()
in /datastore/DEVEL/framework/Core/lib/Horde/Themes/Css/Cache/HordeCache.php on line 25

Signed-off-by: Jan Schneider <jan@horde.org>
Bug: 13014
  • Loading branch information
thomasjfox authored and yunosh committed Mar 6, 2014
1 parent 85adf6c commit aecf1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Themes/Css/Cache/HordeCache.php
Expand Up @@ -25,7 +25,7 @@ class Horde_Themes_Css_Cache_HordeCache extends Horde_Themes_Css_Cache
{
/**
*/
public function process($css)
public function process($css, $cacheid)
{
global $injector;

Expand Down

0 comments on commit aecf1e6

Please sign in to comment.