Skip to content

Commit

Permalink
Repository: providesValueConversion() should not be required being ca…
Browse files Browse the repository at this point in the history
…lled

refs #8826
  • Loading branch information
Johannes Meyer committed May 29, 2015
1 parent b82d7d7 commit cc77902
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/Icinga/Repository/Repository.php
Expand Up @@ -467,6 +467,10 @@ public function retrieveColumn($table, $name, $value)
protected function getConverter($table, $name, $context)
{
$conversionRules = $this->getConversionRules();
if (! isset($conversionRules[$table])) {
return;
}

$tableRules = $conversionRules[$table];

// Check for a conversion method for the alias/column first
Expand Down

0 comments on commit cc77902

Please sign in to comment.