Created
February 26, 2012 21:51
-
-
Save gabrielslau/1919160 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function view($id = null) { | |
$this->Noticia->id = $id; | |
if (!$this->Noticia->exists()) { | |
throw new NotFoundException(__('Invalid noticia')); | |
} | |
$this->set('noticia', $this->Noticia->read(null, $id)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment