root/releases/0.6/content/privacy.php

Revision 296, 0.7 kB (checked in by carmartin, 3 years ago)

Includes should use full path given that we know where things are. Patch 1.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     // Run includes
4         require_once(dirname(dirname(__FILE__))."/includes.php");
5         templates_page_setup();
6
7     // Draw page
8         echo templates_page_draw( array(
9                     sprintf(gettext("%s Privacy Policy"),sitename),
10                     templates_draw(array(
11                                                     'contents' => run("content:privacy"),
12                                                     'name' => sprintf(gettext("%s Privacy Policy"), sitename),
13                                                     'context' => 'infobox'
14                                                 )
15                                                 )
16             )
17             );
18         
19 ?>
20
Note: See TracBrowser for help on using the browser.