Removed PDO dependency & edited a color

This commit is contained in:
Shoghi Cervantes Pueyo 2013-01-15 17:38:16 +01:00
parent f79c6cf2e9
commit ea26c32204
2 changed files with 2 additions and 1 deletions

View File

@ -134,6 +134,7 @@ cd php
--disable-session \
--enable-ctype \
--without-iconv \
--without-pdo-sqlite \
--enable-sockets \
--enable-shared=no \
--enable-static=yes \

View File

@ -443,7 +443,7 @@ class ServerAPI{
require_once($file);
$this->$name = new $class($this->server);
$this->apiList[] = $this->$name;
console("[INFO] API \x1b[36m".$name."\x1b[0m [\x1b[30m".$class."\x1b[0m] loaded");
console("[INFO] API \x1b[36m".$name."\x1b[0m [\x1b[30;1m".$class."\x1b[0m] loaded");
}
}