This commit is contained in:
Savetheinternet 2010-11-30 19:12:35 +11:00
parent cd999b41f9
commit 27cc4af33a
3 changed files with 13 additions and 6 deletions

View file

@ -70,7 +70,6 @@
define('ALLOW_ZIP', false, true);
define('ZIP_IMAGE', 'src/zip.png', true);
/**
Redraw the image using GD functions to strip any excess data (commonly ZIP archives)
WARNING: Very beta. Currently strips animated GIFs too :(
@ -88,7 +87,7 @@
define('DIR_RES', 'res/', true);
// The root directory, including the trailing slash, for Tinyboard.
// examples: '/', '/board/', '/chan/'
// examples: '/', 'http://boards.chan.org/', '/chan/'
define('ROOT', '/', true);
// If for some reason the folders and static HTML index files aren't in the current working direcotry,
@ -101,6 +100,9 @@
// Multi-board (%s is board abbreviation)
define('BOARD_PATH', '%s', true);
// Name of the boards. Typically '/%s/' (/b/, /mu/, etc)
define('BOARD_ABBREVIATION', '/%s/', true);
// Automatically convert things like "..." to Unicode characters ("…")
define('AUTO_UNICODE', true, true);