savetheinternet / Tinyboard

The better imageboard software

Home Page:http://tinyboard.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Categories Theme for Tinyboard

egancode opened this issue · comments

I want to enable the categories theme for Tinyboard, but I get this error. Please tell me what I need to do in order to get this to work..

This theme requires $config['boards'] and $config['categories'] to be set.

paste

$config['boards'] = array(
	 	array('a', 'b'),
	 	array('c', 'd', 'e', 'f', 'g'),
	 	array('h', 'i', 'j'),
	 	array('k', array('l', 'm')),
	 	array('status' => 'http://status.example.org/')
	 );

and

$config['categories'] = array(
	 	'Group Name' => array('a', 'b', 'c'),
	 	'Another Group' => array('d')
	 );

into instance-config and configure them to your liking