File: index.php

package info (click to toggle)
textpattern 4.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,888 kB
  • ctags: 4,970
  • sloc: php: 27,609; sh: 175; makefile: 20
file content (18 lines) | stat: -rw-r--r-- 398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/*
$HeadURL: https://textpattern.googlecode.com/svn/development/4.x/sites/site1/admin/setup/index.php $
$LastChangedRevision: 3238 $
*/

// Use buffering to ensure bogus whitespace is ignored
ob_start(NULL, 2048);
@include '../../private/config.php';
ob_end_clean();

if (!defined('txpath')) {
	define("txpath", '/var/lib/textpattern/textpattern'));
}

include txpath.'/setup/index.php';

?>