Topic: Additional fields

Hey there!
I'm having problems with the additional fields. Every time I try to add an additional field, an error message comes up, doesn't matter what I type in the boxes. The error message says that the name may consist only letters and digits, even if I type only letters and digits.
Does anybody know how to solve this?

Re: Additional fields

1. Please specify the version of Cutenews.
2. All the names consist of Latin letters and numbers and also of underlining sign left, there can be any line on the right side.

Best regards,
CN Support team

Re: Additional fields

1. I'm using the version 1.5.2
2. The names I'm using obbey to this rule

Re: Additional fields

It's a bug of 1.5.2.
Make necessary changes in ./inc/tools.php:
if (preg_match('/^[a-z0-9_]+$/i', '', $add_name) == false)
---->
if (preg_match('/^[a-z0-9_]+$/i', $add_name) == false && $add_name)

if (empty($add_vis))
-->
if (empty($add_vis) && $add_name)
[14:21:06] Гаманин Валерий: http://cute

Best regards,
CN Support team