MyBB Community Forums

Full Version: Default config value
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I'm using this code to add a new setting to the ACP:
array(
			'name' => 'resig_cache',
			'title' => 'Cache Time',
			'description' => 'la de da.',
			'optionscode' => 'text',
			'disporder' => 2,
			'isdefault' => 1,
			'gid' => $iId,
		)

Works fine, but is there a way to set a default value? I want the default cache to be 10 minutes, but I'm not sure how.

Thanks
'value' => "10 minutes"
Ah true. I'm evidently blind. Thanks for the help Smile