Master (#171)
Jeremy D

Jeremy D commited on 2023-01-15 14:27:33
Showing 59 changed files, with 124 additions and 69 deletions.


* Release 2.1.0 (#158)

* Release 2.1.0

* Fix buildTools

* Temp patch for SMF 2.1.3 (in dev) bugs (#160)

* Temp patch for SMF 2.1.3 (in dev) bugs

* fix buildTools

* Remove the buildTools Sub Module (#169)

* Restore Build Tools (#170)

* Restore Build Tools

* Bad action

* No sub modules

* Change the year
... ...
@@ -0,0 +1,34 @@
1
+module.exports = {
2
+	'env': {
3
+		'browser': true,
4
+		'es2021': true,
5
+		'jquery': true
6
+	},
7
+	'extends': 'eslint:recommended',
8
+	'parserOptions': {
9
+		'ecmaVersion': 12,
10
+		'sourceType': 'module'
11
+	},
12
+	'rules': {
13
+		'indent': [
14
+			'error',
15
+			'tab',
16
+			{"SwitchCase": 1}
17
+		],
18
+		'linebreak-style': [
19
+			'error',
20
+			'unix'
21
+		],
22
+		'quotes': [
23
+			'error',
24
+			'single'
25
+		],
26
+		'no-unused-vars': [
27
+			'error',
28
+			{
29
+				'vars': 'local',
30
+				'args' : 'none'
31
+			}
32
+		]
33
+	}
34
+};
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -13,7 +13,7 @@
13 13
 *   Any questions, please contact SimpleDesk.net              *
14 14
 *                                                             *
15 15
 ***************************************************************
16
-* SimpleDesk Version: 2.1 Beta 1                              *
16
+* SimpleDesk Version: 2.1.0                                   *
17 17
 * File Info: check-eof-master.php                             *
18 18
 **************************************************************/
19 19
 
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -13,14 +13,14 @@
13 13
 *   Any questions, please contact SimpleDesk.net              *
14 14
 *                                                             *
15 15
 ***************************************************************
16
-* SimpleDesk Version: 2.1 Beta 1                              *
16
+* SimpleDesk Version: 2.1.0                                   *
17 17
 * File Info: check-eof.php                                    *
18 18
 **************************************************************/
19 19
 
20 20
 // Stuff we will ignore.
21 21
 $ignoreFiles = array(
22 22
 	'\.github/',
23
-	'\.buildTools/',
23
+	'\.github/scripts/',
24 24
 );
25 25
 
26 26
 // No file? Thats bad.
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -13,7 +13,7 @@
13 13
 *   Any questions, please contact SimpleDesk.net              *
14 14
 *                                                             *
15 15
 ***************************************************************
16
-* SimpleDesk Version: 2.1 Beta 1                              *
16
+* SimpleDesk Version: 2.1.0                                   *
17 17
 * File Info: check-license-master.php                         *
18 18
 **************************************************************/
19 19
 
... ...
@@ -37,7 +37,7 @@ $ignoreFiles = array(
37 37
 );
38 38
 
39 39
 $ignoreFilesVersion = array(
40
-	'/buildTools/check-[A-Za-z0-9-_]+\.php',
40
+	'/.github/scripts/check-[A-Za-z0-9-_]+\.php',
41 41
 );
42 42
 
43 43
 // No file? Thats bad.
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -13,7 +13,7 @@
13 13
 *   Any questions, please contact SimpleDesk.net              *
14 14
 *                                                             *
15 15
 ***************************************************************
16
-* SimpleDesk Version: 2.1 Beta 1                              *
16
+* SimpleDesk Version: 2.1.0                                   *
17 17
 * File Info: check-php-syntax.php                             *
18 18
 **************************************************************/
19 19
 
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -13,7 +13,7 @@
13 13
 *   Any questions, please contact SimpleDesk.net              *
14 14
 *                                                             *
15 15
 ***************************************************************
16
-* SimpleDesk Version: 2.1 Beta 1                              *
16
+* SimpleDesk Version: 2.1.0                                   *
17 17
 * File Info: check-signed-off.php                             *
18 18
 **************************************************************/
19 19
 
... ...
@@ -0,0 +1,21 @@
1
+name: Javascript Checks
2
+
3
+on:
4
+  push:
5
+    branches: [ smf21, smf20, master ]
6
+  pull_request:
7
+    branches: [ smf21, smf20, master ]
8
+
9
+  workflow_dispatch:
10
+jobs:          
11
+  lint:
12
+    runs-on: ubuntu-latest
13
+    name: LINT Checks
14
+    steps:
15
+      - uses: actions/checkout@master
16
+        with:
17
+          submodules: false
18
+      - name: Javascript LINT
19
+        uses: tj-actions/eslint-changed-files@v4
20
+        with:
21
+          config-path: ./.github/configs/eslintrc.js
0 22
\ No newline at end of file
... ...
@@ -14,27 +14,27 @@ jobs:
14 14
     steps:
15 15
       - uses: actions/checkout@master
16 16
         with:
17
-          submodules: true
17
+          submodules: false
18 18
       - name: Checking Sign off
19 19
         id: check-signoff
20
-        run: php .github/scripts/check-signed-off.php github
20
+        run: php ./.github/scripts/check-signed-off.php github
21 21
   check-licensing:
22 22
     runs-on: ubuntu-latest
23 23
     name: Check Licensing
24 24
     steps:
25 25
       - uses: actions/checkout@master
26 26
         with:
27
-          submodules: true
27
+          submodules: false
28 28
       - name: Checking Licensing
29 29
         id: check-licensing
30
-        run: php .github/scripts/check-license-master.php ./
30
+        run: php ./.github/scripts/check-license-master.php ./
31 31
   check-eof:
32 32
     runs-on: ubuntu-latest
33 33
     name: Check End of File
34 34
     steps:
35 35
       - uses: actions/checkout@master
36 36
         with:
37
-          submodules: true
37
+          submodules: false
38 38
       - name: Checking End of File
39 39
         id: check-eof
40
-        run: php .github/scripts/check-eof-master.php ./
41 40
\ No newline at end of file
41
+        run: php ./.github/scripts/check-eof-master.php ./
42 42
\ No newline at end of file
... ...
@@ -18,10 +18,10 @@ jobs:
18 18
     steps:
19 19
       - uses: actions/checkout@master
20 20
         with:
21
-          submodules: true
21
+          submodules: false
22 22
       - name: Setup PHP
23 23
         id: SetupPHP
24 24
         uses: nanasess/setup-php@master
25 25
         with:
26 26
           php-version: ${{ matrix.php }}
27
-      - run: php .github/scripts/check-php-syntax.php ./
28 27
\ No newline at end of file
28
+      - run: php ./.github/scripts/check-php-syntax.php ./
29 29
\ No newline at end of file
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
... ...
@@ -5,7 +5,7 @@
5 5
 *       An advanced help desk modification built on SMF       *
6 6
 ***************************************************************
7 7
 *                                                             *
8
-*         * Copyright 2022 - SimpleDesk.net                   *
8
+*         * Copyright 2023 - SimpleDesk.net                   *
9 9
 *                                                             *
10 10
 *   This file and its contents are subject to the license     *
11 11
 *   included with this distribution, license.txt, which       *
12 12