2011-03-09 Miguel de Dios <miguel.dedios@artica.es>

* include/functions.php: fixed in the function "get_system_time" copy&paste
	mistake.
	
	* pandoradb.postgreSQL.sql: in the table "tusuario" added empty string for
	the column "middlename".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4078 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-03-09 15:50:18 +00:00
parent c63273b0be
commit a6747099c4
3 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2011-03-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions.php: fixed in the function "get_system_time" copy&paste
mistake.
* pandoradb.postgreSQL.sql: in the table "tusuario" added empty string for
the column "middlename".
2011-03-08 Miguel de Dios <miguel.dedios@artica.es> 2011-03-08 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php, include/functions_messages.php, * include/functions_html.php, include/functions_messages.php,

View File

@ -317,10 +317,10 @@ function get_system_time () {
switch ($config["dbtype"]) { switch ($config["dbtype"]) {
case "mysql": case "mysql":
require_once ($config['homedir'] . '/include/db/mysql.php'); return mysql_get_system_time();
break; break;
case "postgresql": case "postgresql":
require_once ($config['homedir'] . '/include/db/postgresql.php'); return postgresql_get_system_time();
break; break;
} }
} }

View File

@ -649,7 +649,7 @@ CREATE TABLE "tusuario" (
"fullname" varchar(255) NOT NULL, "fullname" varchar(255) NOT NULL,
"firstname" varchar(255) NOT NULL, "firstname" varchar(255) NOT NULL,
"lastname" varchar(255) NOT NULL, "lastname" varchar(255) NOT NULL,
"middlename" varchar(255) NOT NULL, "middlename" varchar(255) NOT NULL default '',
"password" varchar(45) default NULL, "password" varchar(45) default NULL,
"comments" varchar(200) default NULL, "comments" varchar(200) default NULL,
"last_connect" BIGINT NOT NULL default 0, "last_connect" BIGINT NOT NULL default 0,