diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-13 17:48:14 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-13 17:48:14 +0000 |
commit | 6b5efcb9f399746810e1ec74a9c4dc2e236d82a9 (patch) | |
tree | 932fd6351e6fc52a2d74b06f2d62eb19c42042c2 /views | |
parent | d597cef86679c3924e07fc3074cd2e2fdaab8301 (diff) | |
download | elgg-6b5efcb9f399746810e1ec74a9c4dc2e236d82a9.tar.gz elgg-6b5efcb9f399746810e1ec74a9c4dc2e236d82a9.tar.bz2 |
Messages and exceptions, working merrily together. Aww.
git-svn-id: https://code.elgg.org/elgg/trunk@28 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/pageshell.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/pageshell.php b/views/default/pageshell.php index eb10afc8e..e8631d83d 100644 --- a/views/default/pageshell.php +++ b/views/default/pageshell.php @@ -23,12 +23,12 @@ <title><?php echo $vars['title']; ?></title>
</head>
<body>
+ <h1><?php echo $vars['title']; ?></h1>
<?php
- echo elgg_view('messages/list', array('object' => 'messages'));
+ echo elgg_view('messages/list', array('object' => $vars['messages']));
?>
- <h1><?php echo $vars['title']; ?></h1>
<?php echo $vars['body']; ?>
</body>
</html>
\ No newline at end of file |