From 0110094b2d206e88dceb0cfe2bc4c85f2e826dda Mon Sep 17 00:00:00 2001 From: moglia <moglia@ispconfig3> Date: Thu, 13 May 2010 00:39:42 -0400 Subject: [PATCH] Small brazilian portuguese language files update. br_database_list.lng --- install/lib/install.lib.php | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php index d19a2dd..6e9379f 100644 --- a/install/lib/install.lib.php +++ b/install/lib/install.lib.php @@ -56,6 +56,10 @@ $FILE = realpath('../install.php'); //** Get distribution identifier +//** IMPORTANT! +// This is the same code as in /server/mods-available/monitor_core_module.inc.php +// So if you change it here, you also have to change it in +// /server/mods-available/monitor_core_module.inc.php! function get_distname() { $distname = ''; @@ -259,10 +263,14 @@ function rf($file){ clearstatcache(); - if(!$fp = fopen ($file, 'rb')){ - ilog('WARNING: could not open file '.$file); + if(is_file($file)) { + if(!$fp = fopen ($file, 'rb')){ + ilog('WARNING: could not open file '.$file); + } + return filesize($file) > 0 ? fread($fp, filesize($file)) : ''; + } else { + return ''; } - return filesize($file) > 0 ? fread($fp, filesize($file)) : ''; } function wf($file, $content){ -- Gitblit v1.9.1