Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 222 → Rev 223

/trunk/setup/struct_empty.sql.php
20,6 → 20,8
$prefix = isset($_REQUEST['prefix']) ? $_REQUEST['prefix'] : '';
$database = isset($_REQUEST['database']) ? $_REQUEST['database'] : '';
 
define('MYSQL_SYNTAX', false);
 
$cont = trim(file_get_contents(__DIR__.'/sql/struct.sql'))."\n\n".
trim(file_get_contents(__DIR__.'/sql/wellknown_country.sql'))."\n\n".
trim(file_get_contents(__DIR__.'/sql/wellknown_other.sql'))."\n\n";
26,7 → 28,7
 
$table_names = array('objects', 'asn1id', 'iri', 'ra', 'config', 'log', 'log_user', 'log_object');
foreach ($table_names as $table) {
$cont = str_replace('`'.$table.'`', '`'.$prefix.$table.'`', $cont);
$cont = str_replace('`'.$table.'`', MYSQL_SYNTAX ? '`'.$prefix.$table.'`' : $prefix.$table, $cont);
}
 
if (php_sapi_name() != 'cli') {
35,7 → 37,12
}
 
if (!empty($database)) {
if (MYSQL_SYNTAX) {
echo "CREATE DATABASE IF NOT EXISTS `$database`;\n\n";
echo "USE `$database`;\n\n";
} else {
echo "CREATE DATABASE IF NOT EXISTS $database;\n\n";
echo "USE $database;\n\n";
}
}
echo $cont;