Quote:
Originally Posted by mrpaint
Thank you for all your work. Can I include some of them in the next release of kBank? Hehe  
|
Please do.
Also, here is an edit to enable the copy and past of the colors text file I provided:
In kbank/itemtypes/customize_userinfo.kbank.php
Find:
PHP Code:
'username_colors' => array(
'name' => 'Username Colors list',
'desc' => 'Enter colors that member can choose. Seperate by comma (,)',
'type' => TYPE_STR
),
Replace with:
PHP Code:
'username_colors' => array(
'name' => 'Username Colors list',
'desc' => 'Enter colors that member can choose. Seperate by comma (,)',
'type' => 'textarea'
),
Find:
PHP Code:
'usertitle_colors' => array(
'name' => 'Usertitle Colors list',
'desc' => 'Enter colors that member can choose (for title). Seperate by comma (,)',
'type' => TYPE_STR
),
Replace with:
PHP Code:
'usertitle_colors' => array(
'name' => 'Usertitle Colors list',
'desc' => 'Enter colors that member can choose (for title). Seperate by comma (,)',
'type' => 'textarea'
),