ElkArte Community

Project Support => Support => Topic started by: Allan on September 13, 2014, 12:18:31 pm

Title: Member group Icons
Post by: Allan on September 13, 2014, 12:18:31 pm
I was changing the default ones with new ones. I am able to change them all expcept the newbie rank. I keep getting this error

QuoteThe database value you're trying to insert does not exist: subs_description
Title: Re: Member group Icons
Post by: Adrek on September 13, 2014, 12:22:57 pm
I think that this bug is connected to one I reported: http://www.elkarte.net/community/index.php?topic=1968.0

Try this fix from emanuele:
File: sources/subs/Membergroups.subs.php
Code: (Find) [Select]
$values['subs_' . $name] = Util::htmlspecialchars($value);
Code: (Replace with) [Select]
$values['subs_' . $name] = Util::htmlspecialchars((string) $value);
Title: Re: Member group Icons
Post by: Allan on September 13, 2014, 12:35:56 pm
Worked like a charm thank you.
Title: Re: Member group Icons
Post by: emanuele on September 13, 2014, 01:34:30 pm
Yep... but will be fixed in 1.0.1.

/me goes track this in the "known bugs" as well.