Skip to content

Commit

Permalink
Merge 3318727 into 91deaf8
Browse files Browse the repository at this point in the history
  • Loading branch information
nvindice committed May 23, 2019
2 parents 91deaf8 + 3318727 commit 4c67ac2
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -297,7 +297,8 @@ public function getItem( $productId, array $domains = array( 'attribute', 'media
return $item;
}

throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Product item with ID "%1$s" not found', $productId ) );
$msg = $this->getContext()->getI18n()->dt( 'controller/frontend', 'Product item with ID "%1$s" not found' );
throw new \Aimeos\Controller\Frontend\Exception( sprintf( $msg, $productId ) );
}


Expand Down

0 comments on commit 4c67ac2

Please sign in to comment.