Supprimer le répertoire en utilisant la nouvelle fonction

This commit is contained in:
Nahuel Angelinetti 2013-10-21 09:21:55 +00:00
parent 907f021352
commit 18b3f91cc7
1 changed files with 2 additions and 2 deletions

View File

@ -317,7 +317,7 @@ class m_aws {
* @return string the domain name of the deleted statistic set, or FALSE if an error occurred
*/
function delete_stats($id) {
global $db,$err,$cuid;
global $db,$err,$cuid,$action;
$err->log("aws","delete_stats",$id);
$db->query("SELECT hostname FROM aws WHERE id='$id' and uid='$cuid';");
if (!$db->num_rows()) {
@ -329,7 +329,7 @@ class m_aws {
$this->delete_allowed_login($id,1);
$this->_delconf($hostname);
$db->query("DELETE FROM aws WHERE id='$id'");
system("rm ".$this->CACHEDIR."/$hostname/ -rf");
$action->del($this->CACHEDIR. DIRECTORY_SEPARATOR . $hostname . DIRECTORY_SEPARATOR);
return $hostname;
}