From f79d1d22c8fdd445d94f147be2bec8e7a6b773ab Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Fri, 09 Aug 2013 04:46:08 -0400
Subject: [PATCH] - Fix for previous commit: needed to escape $line.
---
install/lib/install.lib.php | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php
index 166094b..9c61759 100644
--- a/install/lib/install.lib.php
+++ b/install/lib/install.lib.php
@@ -345,6 +345,12 @@
return false;
}
+function rfsel($file, $file2) {
+ clearstatcache();
+ if(is_file($file)) return rf($file);
+ else return rf($file2);
+}
+
function rf($file){
clearstatcache();
if(is_file($file)) {
--
Gitblit v1.9.1