Skip to content

Commit

Permalink
Fix a typo that prevented the cache information from appearing in the…
Browse files Browse the repository at this point in the history
… backend page
  • Loading branch information
brendo committed Aug 8, 2012
1 parent 291a176 commit 711ffaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-sources/datasource.remote.php
Expand Up @@ -26,10 +26,10 @@ public static function getTemplate(){
public function settings() {
$settings = array();

$settings[self::getClass()]['namespace'] = $this->dsParamNAMESPACES;
$settings[self::getClass()]['namespaces'] = $this->dsParamNAMESPACES;
$settings[self::getClass()]['url'] = $this->dsParamURL;
$settings[self::getClass()]['xpath'] = isset($this->dsParamXPATH) ? $this->dsParamXPATH : '/';
$settings[self::getClass()]['cache'] = $this->dsParamCACHE;
$settings[self::getClass()]['cache'] = isset($this->dsParamCACHE) ? $this->dsParamCACHE : 30;
$settings[self::getClass()]['format'] = $this->dsParamFORMAT;
$settings[self::getClass()]['timeout'] = isset($this->dsParamTIMEOUT) ? $this->dsParamTIMEOUT : 6;

Expand Down

0 comments on commit 711ffaf

Please sign in to comment.