Skip to content

Commit

Permalink
ATK v9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michelerota committed Mar 9, 2016
1 parent 0a16feb commit aab98a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions doc/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ Bug numbers are references to bugs in the ibuildings Bugzilla bug tracker:

WIP Changes
-----------


Changes in ATK 9.0.1 (2016-03-09)
---------------------------------
+ Module boot method
+ constant VERSION in Atk class
* updated documentation


Expand Down
4 changes: 2 additions & 2 deletions src/Core/Atk.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class Atk
{

const VERSION = '9.0.0';
const VERSION = '9.0.1';

var $g_nodes = [];
var $g_nodesClasses = [];
Expand Down Expand Up @@ -68,7 +68,7 @@ public function __construct($environment, $basedir)
setlocale(LC_TIME, $locale);
}

$debug = 'Created a new Atk instance: Server info: ' . $_SERVER['SERVER_NAME'] . ' (' . $_SERVER['SERVER_ADDR'] . ')';
$debug = 'Created a new Atk ('.self::VERSION.') instance: Server info: ' . $_SERVER['SERVER_NAME'] . ' (' . $_SERVER['SERVER_ADDR'] . ')';
$debug .= ' Environment: ' . $environment;

Tools::atkdebug($debug);
Expand Down

0 comments on commit aab98a8

Please sign in to comment.