Correction bug qui empechait la suppression des prefs squirrelmail

This commit is contained in:
Axel ROGER 2013-02-08 14:29:51 +00:00
parent 33732a5df0
commit 75cb125201
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ class m_squirrelmail {
"$fullmail2.abook", "$fullmail2.abook",
"$fullmail2.pref"); "$fullmail2.pref");
foreach ( $todel as $t ) { foreach ( $todel as $t ) {
if (file_exists($t) ) { if (file_exists("/var/lib/squirrelmail/data/$t") ) {
@unlink("/var/lib/squirrelmail/data/$t"); @unlink("/var/lib/squirrelmail/data/$t");
} }
} }