[ PHPXref.com ] [ Generated: Sun Aug 30 09:19:12 2009 ] [ Textpattern 4.2.0 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> css.php (source)

   1  <?php
   2  /*
   3  $HeadURL: https://textpattern.googlecode.com/svn/releases/4.2.0/source/css.php $
   4  $LastChangedRevision: 3189 $
   5  */
   6  
   7  if (@ini_get('register_globals'))
   8      foreach ( $_REQUEST as $name => $value )
   9          unset($$name);
  10  
  11  header('Content-type: text/css');
  12  
  13  if (!defined("txpath"))
  14  {
  15      define("txpath", dirname(__FILE__).'/textpattern');
  16  }
  17  
  18  if (!isset($txpcfg['table_prefix']))
  19  {
  20      ob_start(NULL, 2048);
  21      include txpath.'/config.php';
  22      ob_end_clean();
  23  }
  24  
  25  $nolog = 1;
  26  define("txpinterface", "css");
  27  include txpath.'/publish.php';
  28  $s = gps('s');
  29  $n = gps('n');
  30  output_css($s,$n);
  31  ?>
  32  


[ Powered by PHPXref - Served by Debian GNU/Linux ]