Skip to content

Commit 36523c1

Browse files
committed
Refactor.
1 parent 67ec382 commit 36523c1

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": {
1414
"php": ">=7.2.0",
1515
"phpmussel/core": "^3.7",
16-
"maikuolan/common": "^2.15",
16+
"maikuolan/common": "^2.16",
1717
"ext-pcre": "*"
1818
},
1919
"autoload": {

l10n/ms.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Malay language data (last modified: 2026.03.21).
10+
# This file: Malay language data (last modified: 2026.03.22).
1111
#
1212
# Regarding translations: My native language is English. Because this is a free
1313
# and open-source hobby project which generates zero income, and translatable
@@ -264,7 +264,7 @@ label:
264264
Logs access only: "Akses kepada log sahaja"
265265
No log file selected: "Tiada fail log dipilih."
266266
No log files available: "Tiada fail log tersedia."
267-
Normal: "Semulajadi"
267+
Normal: "Semula jadi"
268268
Objects flagged: "Objek dibenderakan"
269269
Objects scanned: "Objek diimbas"
270270
Operating system used: "Sistem operasi digunakan:"

src/pages/siginfo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The signature information page (last modified: 2026.03.21).
11+
* This file: The signature information page (last modified: 2026.03.24).
1212
*/
1313

1414
namespace phpMussel\FrontEnd;
@@ -75,7 +75,7 @@
7575
$Subs = ['Classes', 'Files', 'Vendors', 'SigTypes', 'Targets', 'MalwareTypes'];
7676

7777
/** The currently active signature files. */
78-
$Active = \array_unique(array_filter(\explode(',', $this->Loader->Configuration['signatures']['active']), function ($Item) {
78+
$Active = \array_unique(\array_filter(\explode(',', $this->Loader->Configuration['signatures']['active']), function ($Item) {
7979
return !empty($Item);
8080
}));
8181

src/pages/statistics.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The statistics page (last modified: 2026.03.18).
11+
* This file: The statistics page (last modified: 2026.03.24).
1212
*/
1313

1414
namespace phpMussel\FrontEnd;
@@ -71,7 +71,7 @@
7171
$FE['Other-Active'] = $this->NumberFormatter->format(0);
7272
$FE['Class-Active'] = 'txtRd';
7373
} else {
74-
$FE['Other-Active'] = \count(\array_unique(array_filter(\explode(',', $this->Loader->Configuration['signatures']['active']), function ($Item) {
74+
$FE['Other-Active'] = \count(\array_unique(\array_filter(\explode(',', $this->Loader->Configuration['signatures']['active']), function ($Item) {
7575
return !empty($Item);
7676
})));
7777
$FE['Other-Active'] = $this->NumberFormatter->format($FE['Other-Active']);

0 commit comments

Comments
 (0)