diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2004-09-03 22:33:01 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2004-09-03 22:33:01 +0000 |
commit | a3102db680e351505be7f32b377aca03fcb43775 (patch) | |
tree | 3cf69d6eeb843de4a2fbc3a7931cd8bf1fbd825a /AdminSettings.sample | |
parent | 9194bdac2ecf238520ebdd7d8b276f4bc6e4b061 (diff) | |
download | mediawikicore-a3102db680e351505be7f32b377aca03fcb43775.tar.gz mediawikicore-a3102db680e351505be7f32b377aca03fcb43775.zip |
Phpdocumentor comments format.
Devs: please update your AdminSettings.php
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/5067
Diffstat (limited to 'AdminSettings.sample')
-rw-r--r-- | AdminSettings.sample | 52 |
1 files changed, 29 insertions, 23 deletions
diff --git a/AdminSettings.sample b/AdminSettings.sample index 58fb2440368b..fb6d4597bcff 100644 --- a/AdminSettings.sample +++ b/AdminSettings.sample @@ -1,28 +1,34 @@ <?php -# This file should be copied to AdminSettings.php, and modified -# to reflect local settings. Unlike LocalSettings.php, it is -# not copied to the installation directory for security reasons; -# it is used by the install and maintenance scripts only. -# -# Developers: Do not check AdminSettings.php into CVS! +/** + * This file should be copied to AdminSettings.php, and modified + * to reflect local settings. Unlike LocalSettings.php, it is + * not copied to the installation directory for security reasons; + * it is used by the install and maintenance scripts only. + * + * Developers: Do not check AdminSettings.php into CVS! + * + * @package MediaWiki + */ -# This data is used by all database maintenance scripts -# (see directory maintenance/). The SQL user DOES NOT NEED -# TO EXIST. It is created by the installation script, -# which will prompt you for the MySQL root password. -# -# This is not to be confused with sysop accounts for the -# wiki. -# -$wgDBadminuser = "wikiadmin"; -$wgDBadminpassword = "adminpass"; +/* + * This data is used by all database maintenance scripts + * (see directory maintenance/). The SQL user DOES NOT NEED + * TO EXIST. It is created by the installation script, + * which will prompt you for the MySQL root password. + * + * This is not to be confused with sysop accounts for the + * wiki. + */ +$wgDBadminuser = 'wikiadmin'; +$wgDBadminpassword = 'adminpass'; -# Define these if you want the installed files to be owned -# by a specific user or group for ease of maintenance. You -# must run the install script as root to change owners, or -# as a member of the group to change groups. -# -# $wgInstallOwner = "apache"; -# $wgInstallGroup = "apache"; +/** + * Define these if you want the installed files to be owned + * by a specific user or group for ease of maintenance. You + * must run the install script as root to change owners, or + * as a member of the group to change groups. + */ +# $wgInstallOwner = 'apache'; +# $wgInstallGroup = 'apache'; ?> |