Files
jul/lib/config.default.php
Xkeeper b4c7bace9f Fixing the dateformat issue + some other tweaks
Date formats can be edited in profiles. The field defaults to the current
dateformat set (either the default or the user's), but will only be saved in
the database if it differs from $defaultdateformat.

Edit Profile (editprofile.php) has been cleaned up and now does less absurd
things. For one, it doesn't pass along your password in plaintext any more!

The formatting of the file has also been cleaned up a bit and should
hopefully be less absurd.
2011-11-13 14:22:36 -08:00

18 lines
362 B
PHP

<?php
//MySQL setup
$sqlhost = "localhost";
$sqluser = "user";
$sqlpass = "";
$dbname = "database";
// Board naming
$boardname = "Board Name";
$boardtitle = "Board Title";
$siteurl = "http://example.com";
$sitename = "Site Name";
// Default date/time formatting
$defaultdateformat = "m-d-y h:i:s A";
$defaultdateshort = "m-d-y";