From 83d08d1acc1fb64069958a29a190ad3804933ef9 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 14 Nov 2025 11:06:25 +0100 Subject: [PATCH] move class into namespace Seeddms\Seeddms --- inc/inc.Version.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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');