Development

#4491 ([PATCH] sfProcessCache in sfCompatPlugin - wrong check for eaccelerator)

You must first sign up to be able to contribute.

Ticket #4491 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

[PATCH] sfProcessCache in sfCompatPlugin - wrong check for eaccelerator

Reported by: adrive Assigned to: fabien
Priority: minor Milestone: 1.1.3
Component: plugins Version: 1.1.2
Keywords: Cc:
Qualification: Unreviewed

Description

In sfCompat10Plugin is not updated sfProcessCache.

The bug described in #3425 already exists in sfCompat10Plugin's process cache.

Here is a simple patch:

Index: plugins/sfCompat10Plugin/lib/cache/sfProcessCache.class.php
===================================================================
--- plugins/sfCompat10Plugin/lib/cache/sfProcessCache.class.php (revision 11743)
+++ plugins/sfCompat10Plugin/lib/cache/sfProcessCache.class.php (working copy)
@@ -46,7 +46,7 @@
       {
         $cacher = 'xcache';
       }
-      elseif (function_exists('ecacher_put'))
+      elseif (function_exists('eaccelerator_put'))
       {
         $cacher = 'eaccelerator';
       }

Change History

09/25/08 11:41:17 changed by FabianLange

  • status changed from new to closed.
  • resolution set to fixed.

(In [11773]) [1.2] fixed #4491

09/25/08 11:41:32 changed by FabianLange

(In [11774]) [1.1] fixed #4491

09/25/08 11:44:23 changed by FabianLange

  • version changed from 1.2.0 DEV to 1.1.2.
  • milestone set to 1.1.3.