]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/T/general.php
Bugfix en niveles de log.
[software/sercom-old.git] / src / T / general.php
index d56d8412b216fabe1a4b18337fd44461967f2289..22d6ab780a9f3527703d295431d149dd2cf586a8 100644 (file)
@@ -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