Skip to content

Commit

Permalink
remove closing ?> from setup/database.txt so it cannot get padded wit…
Browse files Browse the repository at this point in the history
…h spaces which breaks xml declarations later on (and probably causes spurious output/alerts from AJAX calls)

git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/trunk@122 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
Dave Goodwin committed Oct 3, 2011
1 parent 00caf4f commit a5ec7a1
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions setup/database.txt
@@ -1,35 +1,35 @@
<?PHP /**
*
* database page, has the settings for database connection
*
* @author Patrick Lockley
* @version 1.0
* @copyright Copyright (c) 2008,2009 University of Nottingham
* @package
*/
<?php
/**
*
* database page, has the settings for database connection
*
* @author Patrick Lockley
* @version 1.0
* @copyright Copyright (c) 2008,2009 University of Nottingham
* @package
*/

/*
* Host where database is
*/
* Host where database is
*/
$xerte_toolkits_site->database_host = "DATABASE_HOST";

/*
* Username for database
*/
* Username for database
*/
$xerte_toolkits_site->database_username ="DATABASE_USERNAME";

/*
* Password for database
*/
* Password for database
*/
$xerte_toolkits_site->database_password ="DATABASE_PASSWORD";

/*
* Database name
*/
* Database name
*/
$xerte_toolkits_site->database_name ="DATABASE_NAME";

/*
* Database table prefix
*/
* Database table prefix
*/
$xerte_toolkits_site->database_table_prefix ="DATABASE_PREFIX";
?>

0 comments on commit a5ec7a1

Please sign in to comment.