diff --git a/inc/inc.Version.php b/inc/inc.Version.php index 5a9b303b0..0642b3cd8 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -18,7 +18,9 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -class SeedDMS_Version { /* {{{ */ +namespace Seeddms\Seeddms; + +class Version { /* {{{ */ const _number = "5.1.43"; const _string = "SeedDMS"; @@ -47,7 +49,7 @@ class SeedDMS_Version { /* {{{ */ function banner() { /* {{{ */ return self::_string .", ". self::_number; - } + } /* }}} */ /** * Compare two version @@ -84,3 +86,4 @@ class SeedDMS_Version { /* {{{ */ } /* }}} */ +class_alias('Seeddms\Seeddms\Version', 'SeedDMS_Version');