[Alba-desarrollo] SVN Alba r5410 -
prosistem/alba/trunk/alba/web/instalar
commits en pressenter.com.ar
commits en pressenter.com.ar
Jue Ene 17 03:21:25 CET 2008
Author: josx
Date: 2008-01-17 00:21:24 -0200 (Thu, 17 Jan 2008)
New Revision: 5410
Modified:
prosistem/alba/trunk/alba/web/instalar/funciones.php
Log:
Cuando hace el fopen y no tenes permisos llenaba la pantalla de warnings por no tener acceso archivo de log para escribir el instalar.log
Modified: prosistem/alba/trunk/alba/web/instalar/funciones.php
===================================================================
--- prosistem/alba/trunk/alba/web/instalar/funciones.php 2008-01-16 21:02:00 UTC (rev 5409)
+++ prosistem/alba/trunk/alba/web/instalar/funciones.php 2008-01-17 02:21:24 UTC (rev 5410)
@@ -34,7 +34,7 @@
function DebugLog($str,$modo = 'I') {
$log = AlbaPath() . DIRECTORY_SEPARATOR . "log" . DIRECTORY_SEPARATOR . "install.log";
- $fp = fopen($log,"a+");
+ $fp = @fopen($log,"a+");
if ($fp) {
fwrite($fp,date('d/m/Y H:i:s') . " $modo: $str\n");
fclose($fp);
Más información sobre la lista de distribución Alba-desarrollo