Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Winkler <git@lw1.at>2020-08-17 22:51:02 +0300
committerGitHub <noreply@github.com>2020-08-17 22:51:02 +0300
commit7e06890b08c5cb0528efca8925819ca3032324a4 (patch)
treeb8403807544992c9cf4c1583809b0f8e15727021 /plugins/Actions/ArchivingHelper.php
parent688373e4d3a34bef647c3a681db4268afd226e95 (diff)
remove optional parameter before required one (#16312)
Diffstat (limited to 'plugins/Actions/ArchivingHelper.php')
-rw-r--r--plugins/Actions/ArchivingHelper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Actions/ArchivingHelper.php b/plugins/Actions/ArchivingHelper.php
index 3708739205..5f580928a7 100644
--- a/plugins/Actions/ArchivingHelper.php
+++ b/plugins/Actions/ArchivingHelper.php
@@ -371,7 +371,7 @@ class ArchivingHelper
* @param array $actionsTablesByType
* @return DataTable\Row
*/
- public static function getActionRow($actionName, $actionType, $urlPrefix = null, &$actionsTablesByType)
+ public static function getActionRow($actionName, $actionType, $urlPrefix, &$actionsTablesByType)
{
// we work on the root table of the given TYPE (either ACTION_URL or DOWNLOAD or OUTLINK etc.)
/* @var DataTable $currentTable */