2
0
forked from Wavyzz/dolibarr

Fix PhanPluginRedundantAssignment

This commit is contained in:
MDW
2024-03-13 00:30:25 +01:00
parent 01d59c10c9
commit 31ea26e14e

View File

@@ -8,6 +8,7 @@
* Copyright (C) 2013 Cedric Gross <c.gross@kreiz-it.fr>
* Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.com>
* Copyright (C) 2017 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -578,9 +579,9 @@ class modAgenda extends DolibarrModules
);
// Import Event Extra Fields
$keyforselect = 'actioncomm';
$keyforelement = 'action';
$keyforaliasextra = 'extra';
$keyforselect = 'actioncomm'; // @phan-suppress-current-line PhanPluginRedundantAssignment
$keyforelement = 'action'; // @phan-suppress-current-line PhanPluginRedundantAssignment
$keyforaliasextra = 'extra'; // @phan-suppress-current-line PhanPluginRedundantAssignment
include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
}
}