diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-11-08 22:35:14 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-08 22:35:14 -0800 |
commit | 4f8728029dfc283f5d26328ec21a2db455e97651 (patch) | |
tree | 5fbc4e48f08ea14397ccaf1c2d37d0b5e78b7b97 | |
parent | d349400531c780715a54ff9537406546217c26ec (diff) |
Call render() on the $menu, since we no longer use its __string()
function to do implicit conversion.
-rw-r--r-- | modules/comment/views/admin_comments.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/views/admin_comments.html.php b/modules/comment/views/admin_comments.html.php index f0f5ab1c..b138702c 100644 --- a/modules/comment/views/admin_comments.html.php +++ b/modules/comment/views/admin_comments.html.php @@ -40,7 +40,7 @@ <div class="g-block-content"> <!-- @todo: Highlight active menu option --> <div id="g-admin-comments-menu" class="ui-helper-clearfix"> - <?= $menu ?> + <?= $menu->render() ?> </div> <!-- @todo: Remove after setting active option? --> |