root/releases/0.6rc2/_templates/css.php

Revision 296, 372 bytes (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 require_once(dirname(dirname(__FILE__))."/includes.php");
4
5 header("Content-type: text/css; charset=utf-8");
6
7 $template_id = optional_param('template',0,PARAM_INT);
8
9 echo templates_draw(array(
10                           'template' => $template_id,
11                           'context' => 'css'
12                           )
13                     );
14                     
15 ?>
Note: See TracBrowser for help on using the browser.