Fixed API unloading

This commit is contained in:
Shoghi Cervantes
2013-06-08 01:40:13 +02:00
parent 157237e3ef
commit 38c50c2fec
2 changed files with 4 additions and 4 deletions

View File

@@ -204,10 +204,10 @@ class ServerAPI{
}
public function __destruct(){
foreach($this->apiList as $ob){
if(is_callable($ob, "__destruct")){
foreach($this->apiList as $i => $ob){
if(method_exists($ob, "__destruct")){
$ob->__destruct();
unset($this->apiList[$ob]);
unset($this->apiList[$i]);
}
}
}