• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

An error code was found and should be fixed

weiduanwei

核心许可证
There is a problem with the code here, which causes this error message “Username already being used” that it cannot be translated into other languages

in the /app/routes/route.signup.php

error code line 149:

PHP:
if (G\timing_safe_compare($row['user_username'], $_POST['username'])) {
        $input_errors['username'] = 'Username already being used'; }

Should be modified to
PHP:
if (G\timing_safe_compare($row['user_username'], $_POST['username'])) {
    $input_errors['username'] = _s('Username already being used');}
 
Back
Top