NotFoundHttpException is thrown if no record is found in

DataAccessFunction
This commit is contained in:
Manuel Raynaud
2014-03-04 09:27:38 +01:00
parent 56663c85a1
commit da18df7ca0
2 changed files with 6 additions and 5 deletions

View File

@@ -26,6 +26,7 @@ namespace Thelia\Core\Template\Smarty\Plugins;
use Propel\Runtime\ActiveQuery\ModelCriteria;
use Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Thelia\Core\Template\Smarty\AbstractSmartyPlugin;
use Thelia\Core\Security\SecurityContext;
use Thelia\Core\Template\ParserContext;
@@ -391,9 +392,9 @@ class DataAccessFunctions extends AbstractSmartyPlugin
}
return $this->dataAccess($objectLabel, $params, $data, $noGetterData);
} else {
throw new NotFoundHttpException();
}
return '';
}
/**