Skip to content

Commit

Permalink
Fix silly slash bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-helmich committed Sep 5, 2013
1 parent 558a09d commit 0ae6b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/OrganizationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function showAction(\Sjr\SjrOffers\Domain\Model\Organization $organizatio
$allowedStates = (strlen($this->settings['allowedStates']) > 0) ? \TYPO3\CMS\Core\Utility\GeneralUtility::intExplode(',', $this->settings['allowedStates']) : array();
$listCategories = (strlen($this->settings['listCategories']) > 0) ? \TYPO3\CMS\Core\Utility\GeneralUtility::intExplode(',', $this->settings['listCategories']) : array();
$contacts = $organization->getContacts();
$demand = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('\\Sjr\\SjrOffers\\Domain\\Model\\Demand');
$demand = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('Sjr\\SjrOffers\\Domain\\Model\\Demand');
$demand->setOrganization($organization);
$this->view->assign('offers', $this->offerRepository->findDemanded(
$demand,
Expand Down

0 comments on commit 0ae6b8a

Please sign in to comment.