mirror of
https://github.com/e107inc/e107.git
synced 2025-08-02 04:40:44 +02:00
#4830: Sensible no delete log in admin_log_ui::maintenanceProcess()
Fixes: #4830
This commit is contained in:
@@ -403,7 +403,13 @@ class admin_log_ui extends e_admin_ui
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$mes->addWarning(RL_LAN_054." : ".$sql->mySQLresult);
|
$message = RL_LAN_054;
|
||||||
|
$lastErrorText = $sql->getLastErrorText();
|
||||||
|
if ($lastErrorText)
|
||||||
|
{
|
||||||
|
$message .= "<br />$lastErrorText";
|
||||||
|
}
|
||||||
|
$mes->addWarning($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user