1 (edited by 2013-03-17 22:41:26)

Topic: Deleting users...

I noted that in "Manage Users" pannel  (CN 1.5.3), if I want to delete more than a user ticking the flags, it doesn't delete all users I ticked, but only one of them... How to fix?

2 (edited by 2013-03-18 23:22:31)

Re: Deleting users...

anybody?

3 (edited by 2013-03-19 05:50:28)

Re: Deleting users...

In the core/core.php line in function user_delete($user)

$users_db = load_database('users_db', 'users.db');


change to

$users_db = load_database('users_db', 'users.db', true);


to correct this bug. This change is available also on github https://github.com/CuteNews/cute-news-repo/...7030c585cd824fa.

Best regards,
CN Support team

Re: Deleting users...

it works right... thanx