forked from trhoppe/roadraceautox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.php
39 lines (35 loc) · 1.74 KB
/
editor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.2.0 Patch Level 3 - Licence Number VBFBED0615
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2012 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
/**
* The index for vBulletin. This file simply grabs the procedural bootstraps.
* This file can be moved and referenced with apache mod_rewrite. This will require
* editing the path to the bootstrap below. However, the original file may be
* reverted on upgrades.
*/
// Define this script as the route handler
define('VB_PRODUCT', 'vbcms');
define('VB_ENTRY', 'editor.php');
define('VB_ROUTER_SEGMENT', 'editor');
define('GET_EDIT_TEMPLATES', 'picture');
define('CMS_SCRIPT', true);
define('THIS_SCRIPT', 'vbcms');
define('FRIENDLY_URL_LINK', 'vbcms');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_WOLPATH', 1);
// Bootstrapping
require_once('vb/bootstrap.php');
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 16:29, Sun Dec 9th 2012
|| # SVN: $Revision: 32878 $
|| ####################################################################
\*======================================================================*/