root/releases/0.401/search/tags.php

Revision 45, 444 bytes (checked in by sven, 3 years ago)

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG display popular tags page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("search:init");
9         
10         $title = gettext("Some Tags");
11
12         $body = run("content:tags");
13         $body .= run("search:tags:display");
14         
15         $body = run("templates:draw", array(
16                         'context' => 'contentholder',
17                         'title' => $title,
18                         'body' => $body
19                     )
20                     );
21                     
22         echo run("templates:draw:page", array(
23                     $title, $body
24                 )
25                 );
26
27 ?>
Note: See TracBrowser for help on using the browser.