]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/T/general.php
Bugfix.
[software/sercom-old.git] / src / T / general.php
index d56d8412b216fabe1a4b18337fd44461967f2289..b320aee173aa3d3ae25879088d528251a45c0f98 100644 (file)
@@ -1,12 +1,12 @@
 <?php // vim: set binary noeol et sw=4 sts=4:
 
-$VERSION = 0.2;
+$VERSION = 0.4;
 $NAME = 'sercom';
 
 define('DB_DATAOBJECT_NO_OVERLOAD', 0);
 
 // Seteo umask para que el grupo pueda leer.
-umask(00027);
+umask(00022);
 
 // constantes de logging
 require_once 'T/logconstants.php';
@@ -21,6 +21,10 @@ foreach (array('.', '/etc', '/etc/'.$NAME) as $dir) {
         }
     }
 }
+if (!$CONF) {
+    fputs(STDERR, "No se pudo abrir archivo de configuración!\n");
+    exit(1);
+}
 unset($cf, $dir);
 
 // Configuración de DB_DataObject
@@ -32,7 +36,7 @@ $DBO_options = &PEAR::getStaticProperty('DB_DataObject', 'options');
 
 // because PEAR::getstaticProperty was called with and & (get by reference)
 // this will actually set the variable inside that method (a quasi static variable)
-$DBO_options = $CONF['DBO'];
+$DBO_options = $CONF['dbo'];
 
 //unset($DBO_options);
 
@@ -93,10 +97,9 @@ require_once 'T/log.php';
 require_once 'T/code.php';
 // manejador de intentos
 require_once 'T/Intento.php';
-// data object
 
 unset($gconf);
 
-logs("Iniciando {$argv[0]}...");
+logs('Iniciado');
 
 ?>
\ No newline at end of file