Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.


## Release 1.4
- FIX : Compat V23 - **11/12/2025** - 1.4.5
- FIX : Frequency on multiclone- **17/11/2025** - 1.4.4
- FIX : Compat V22 - **02/10/2025** - 1.4.3
- FIX : Fatal Unsupported operand type string instead of int - **26/02/2025** - 1.4.2
Expand Down
20 changes: 10 additions & 10 deletions admin/multiclone_about.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
* Put some comments here
*/
// Dolibarr environment
$res = @include("../../main.inc.php"); // From htdocs directory
$res = @include "../../main.inc.php"; // From htdocs directory
if (! $res) {
$res = @include("../../../main.inc.php"); // From "custom" directory
$res = @include "../../../main.inc.php"; // From "custom" directory
}

// Libraries
Expand All @@ -37,7 +37,7 @@

// Access control
if (! $user->admin) {
accessforbidden();
accessforbidden();
}

/*
Expand All @@ -48,17 +48,17 @@

// Subheader
$linkback = '<a href="' . DOL_URL_ROOT . '/admin/modules.php">'
. $langs->trans("BackToModuleList") . '</a>';
. $langs->trans("BackToModuleList") . '</a>';
print_fiche_titre($langs->trans($page_name), $linkback);

// Configuration header
$head = multicloneAdminPrepareHead();
dol_fiche_head(
$head,
'about',
$langs->trans("Module104968Name"),
0,
'multiclone@multiclone'
$head,
'about',
$langs->trans("Module104968Name"),
0,
'multiclone@multiclone'
);

// About page goes here
Expand All @@ -73,4 +73,4 @@

llxFooter();

$db->close();
$db->close();
Loading