Created
November 2, 2011 22:34
-
-
Save eminetto/1335151 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> | |
<title>Blog</title> | |
</head> | |
<body> | |
<?php | |
//mostra as mensagens de erro caso existam | |
$session = Zend_Session::start(); | |
if(isset($session->erro)) { | |
print_r($session->erro); | |
unset($session->erro); | |
} | |
//mostra o conteúdo da página | |
echo $this->layout()->content; | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment