add empty functions for create_database()

This commit is contained in:
Miles Lott 2004-01-26 03:23:06 +00:00
parent d26eacbeea
commit 4f724bc9b1
4 changed files with 20 additions and 0 deletions

View File

@ -366,5 +366,10 @@
} }
return $return; return $return;
} }
function create_database($adminname = '', $adminpasswd = '')
{
return False;
}
} }
?> ?>

View File

@ -199,5 +199,10 @@
$this->Error); $this->Error);
die('Session halted.'); die('Session halted.');
} }
function create_database($adminname = '', $adminpasswd = '')
{
return False;
}
} }
?> ?>

View File

@ -507,4 +507,9 @@
} }
return $info; return $info;
} }
function create_database($adminname = '', $adminpasswd = '')
{
return False;
}
} }

View File

@ -175,5 +175,10 @@
printf("<b>Sybase Error</b><br>\n"); printf("<b>Sybase Error</b><br>\n");
die("Session halted."); die("Session halted.");
} }
function create_database($adminname = '', $adminpasswd = '')
{
return False;
}
} }
?> ?>