Polish new settings

This commit is contained in:
Trevor Slocum 2013-01-16 13:12:55 -08:00
parent c6f45f9b6c
commit baf7458916

View File

@ -1,8 +1,10 @@
<?php
define('TINYIB_BOARD', "b"); // Unique identifier for this board using only letters and numbers
define('TINYIB_BOARDDESC', "TinyIB"); // Displayed at the top of every page
define('TINYIB_THREADSPERPAGE', 10); // Amount of threads shown per index page
define('TINYIB_MAXTHREADS', 100); // Oldest threads are discarded over this limit [0 to disable]
define('TINYIB_TRUNCATE', 15); // Messages are truncated to this many lines on board index pages [0 to disable]
define('TINYIB_PREVIEWREPLIES', 3); // Amount of replies previewed on index pages
define('TINYIB_MAXKB', 2048); // Maximum file size in kilobytes [0 to disable]
define('TINYIB_MAXKBDESC', "2 MB"); // Human-readable representation of the maximum file size
define('TINYIB_MAXW', 250); // Maximum image width
@ -13,8 +15,6 @@ define('TINYIB_TRIPSEED', ""); // Enter some random text - Used when generating
define('TINYIB_ADMINPASS', ""); // Text entered at the manage prompt to gain administrator access
define('TINYIB_MODPASS', ""); // Moderators only have access to delete posts ["" to disable]
define('TINYIB_DBMODE', "flatfile"); // Choose: flatfile / mysql / sqlite
define('TINYIB_PREVIEWREPLIES', 3); // Max replies to show on index
define('TINYIB_THREADSPERPAGE', 10); // Amount of threads per page on index
// Note: The following only apply when TINYIB_DBMODE is set to mysql
define('TINYIB_DBHOST', "localhost");