В 2.5.4 была исправлена небольшая ошибка, а картинки возможно у кого-то так и остались лежать, можно удалить их скриптом
<?
require_once ('includes/start.php');
require_once ('includes/functions.php');
require_once ('includes/header.php');
include_once ('themes/'.$config['themes'].'/index.php');
$cachefiles = glob(BASEDIR.'upload/photos/*.{gif,png,jpg,jpeg}', GLOB_BRACE);
if (is_array($cachefiles) && count($cachefiles)>0){
foreach($cachefiles as $val){
$login = str_replace(array('.jpg', '.png', '.jpeg', '.gif'), '', basename($val));
$userpic = DB :: $dbh -> querySingle("SELECT `users_picture` FROM `users` WHERE `users_login`=? LIMIT 1;", array($login));
if ($userpic!=basename($val)){
echo 'Удалено: '.basename($val).'<br />';
unlink_image('upload/photos/', basename($val));
}
}
}
echo ('<b>Успешно выполнено!</b><br />');
include_once ('themes/'.$config['themes'].'/foot.php');
?>
создать файл в корне и написать этот код