cellog Sat Apr 28 19:25:38 2007 UTC
Modified files:
/pearweb/include pear-cache.php
Log:
fix Bug #10709 Can not reset my password
we were caching the file programmatically
http://cvs.php.net/viewvc.cgi/pearweb/include/pear-cache.php?r1=1.37&r2=1.38&diff_format=u
Index: pearweb/include/pear-cache.php
diff -u pearweb/include/pear-cache.php:1.37 pearweb/include/pear-cache.php:1.38
--- pearweb/include/pear-cache.php:1.37 Wed Sep 6 20:09:28 2006
+++ pearweb/include/pear-cache.php Sat Apr 28 19:25:38 2007
@@ -15,7 +15,7 @@
+----------------------------------------------------------------------+
| Author: Martin Jansen <mj@xxxxxxx> |
+----------------------------------------------------------------------+
- $Id: pear-cache.php,v 1.37 2006/09/06 20:09:28 mj Exp $
+ $Id: pear-cache.php,v 1.38 2007/04/28 19:25:38 cellog Exp $
*/
// Adding _no_cache=1 to the URL prevents caching
if (!empty($_GET['_no_cache']) && (int)$_GET['_no_cache'] == 1) {
@@ -29,6 +29,9 @@
$cache_files = array(
'/index.php'=>'',
'/about/credits.php' => '',
+ '/about/damblan.php' => '',
+ '/about/index.php' => '',
+ '/about/privacy.php' => '',
'/copyright.php' => '',
'/dtd/index.php' => '',
'/download-docs.php' => '',
@@ -57,7 +60,6 @@
$cache_dirs = array(
"/feeds" => "",
"/news" => "",
- "/about" => "",
"/group" => "",
"/group/docs" => "",
"/manual" => "",
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|