-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.php
35 lines (33 loc) · 1.08 KB
/
version.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
<?php
/**
* Versioning routines
*
* See http://wush.net/trac/wikka/ticket/719 for details.
*
* @package Wikka
* @subpackage Core
* @version $Id: version.php 1481 2009-09-12 03:53:07Z BrianKoontz $
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
* @see /docs/Wikka.LICENSE
* @filesource
*
* @author {@link http://www.wikkawiki.org/BrianKoontz Brian Koontz}
*
* @copyright Copyright 2008, {@link http://wikkawiki.org/CreditsPage Wikka Development Team}
*
*/
// ---------------------------- VERSIONING ------------------------------------
/**
* Used to generate WAKKA_VERSION value. Changes here might be
* modified during SVN checkin. Note to end users: Changing this
* version number might result in problems upgrading...please use
* caution.
*/
$svn_version = '1.3.5';
if (!defined('WAKKA_VERSION')) define('WAKKA_VERSION', $svn_version);
/**
* Defines the current Wikka patch level. This should be 0 by default,
* and does not need to be changed for major/minor releases.
*/
if(!defined('WIKKA_PATCH_LEVEL')) define('WIKKA_PATCH_LEVEL', '0');
?>