Skip to content

Commit

Permalink
fixed cache deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
God Mod committed Feb 9, 2015
1 parent 1101576 commit 0e85580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wowprogress_portal.class.php
Expand Up @@ -65,7 +65,7 @@ public function get_settings($state){
public function output() {
if ($this->game->get_game() != "wow") return $this->user->lang('wp_wow_only');

$strOut = $this->pdc->get('portal.modul.wowprogress',false,true);
$strOut = $this->pdc->get('portal.module.wowprogress',false,true);

if($strOut === NULL){
$arrEncounter = $this->config('encounter');
Expand All @@ -91,7 +91,7 @@ public function output() {
}
}
$strOut .= '</table>';
$this->pdc->put('portal.modul.wowprogress',$strOut,3600,false,true);
$this->pdc->put('portal.module.wowprogress',$strOut,3600,false,true);
}
return $strOut;
}
Expand Down

0 comments on commit 0e85580

Please sign in to comment.