Skip to content

Commit

Permalink
Remove indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Dec 26, 2018
1 parent 9d1b3cb commit 8cb13a5
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions config_defaults_inc.php
@@ -1,42 +1,42 @@
<?php
$g_hostname = 'localhost';
$g_db_username = 'root';
$g_db_password = '';
$g_database_name = 'mantisbt';
$g_hostname = 'localhost';
$g_db_username = 'root';
$g_db_password = '';
$g_database_name = 'mantisbt';

# Website URLs
$g_wiki_url = '/wiki/';
$g_docs_url = '/docs/';
$g_bugs_url = '/bugs/';
$g_blog_url = '/blog/';
$g_forums_url = '/forums/';
# Website URLs
$g_wiki_url = '/wiki/';
$g_docs_url = '/docs/';
$g_bugs_url = '/bugs/';
$g_blog_url = '/blog/';
$g_forums_url = '/forums/';

# Documentation
$g_docs_path = 'master/en-US/';
$g_docs_admin_guide = 'Admin_Guide';
$g_docs_dev_guide = 'Developers_Guide';
$g_docs_erd_path = 'erd/';
# Documentation
$g_docs_path = 'master/en-US/';
$g_docs_admin_guide = 'Admin_Guide';
$g_docs_dev_guide = 'Developers_Guide';
$g_docs_erd_path = 'erd/';

# Information about latest stable release.
$g_latest_version_stable = '1.2.16';
# Information about latest stable release.
$g_latest_version_stable = '1.2.16';

# Information about latest development release.
$g_latest_version_dev = '1.3.0b1';
$g_latest_version_dev_roadmap = '1.3.x';
# Information about latest development release.
$g_latest_version_dev = '';
$g_latest_version_dev_roadmap = '';

# Twitter Information
$g_twitter_username = 'mantisbt';
$g_twitter_consumer_key = '';
$g_twitter_consumer_secret = '';
$g_twitter_access_token = '';
$g_twitter_access_token_secret = '';
$g_twitter_tweets_count = 5;
# Twitter Information
$g_twitter_username = 'mantisbt';
$g_twitter_consumer_key = '';
$g_twitter_consumer_secret = '';
$g_twitter_access_token = '';
$g_twitter_access_token_secret = '';
$g_twitter_tweets_count = 5;

########################################
# Include user's config, if available
########################################
########################################
# Include user's config, if available
########################################

$t_config_inc = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config_inc.php';
if ( file_exists( $t_config_inc ) ) {
require_once( $t_config_inc );
}
$t_config_inc = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'config_inc.php';
if ( file_exists( $t_config_inc ) ) {
require_once( $t_config_inc );
}

0 comments on commit 8cb13a5

Please sign in to comment.