From 534a179cc3e7184493c6332e9ebe241edcfe6d65 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 20 Feb 2005 21:49:52 +0000 Subject: [PATCH] Added appversion instance variable. --- kernel.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel.php b/kernel.php index 4de580f..e6d70b8 100644 --- a/kernel.php +++ b/kernel.php @@ -84,6 +84,7 @@ class Shared_Object_Framework * @var sourcepath The location of the framework sources * @var appath The path to the application's location * @var application The name of the application that is using the framework + * @var appversion The version of the application * @var debug Variable for debug mode * @var debuginfo Listing of all debug notices * @var modules An array of loaded framework modules @@ -97,6 +98,7 @@ class Shared_Object_Framework var $sourcepath = ''; var $apppath = ''; var $application = ''; + var $appversion = ''; var $debug = false; var $debuginfo = array(); var $modules = array(); -- 2.43.5