views:

45

answers:

2

Anyone knows Which file in Kohana framework contains the version information. Everything I look in the tutorials opposes to what I view in my application (Cannot Update at this moment).

+3  A: 

Check out these constants in the Kohana class:

// Release version and codename
const VERSION  = '3.0.8';
const CODENAME = 'großen jäger';

So Kohana::VERSION and Kohana::CODENAME.

The Pixel Developer