Skip to content

Commit 3a354cc

Browse files
author
Yannick
committed
Fixes an issue with language files
1 parent 32216b3 commit 3a354cc

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

Diff for: admin/actions/add.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212

1313
require_once("../../config.php");
14-
require_once("includes/common.php");
14+
require_once("../includes/common.php");
1515

1616
$uniquekey = UNIQUE_KEY;
1717
$currentadminuser = ADMIN_USER;

Diff for: admin/actions/edit.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111

1212
require_once("../../config.php");
13-
require_once("includes/common.php");
13+
require_once("../includes/common.php");
1414

1515
$uniquekey = UNIQUE_KEY;
1616
$currentadminuser = ADMIN_USER;

Diff for: admin/actions/worker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
require_once("../../config.php");
10-
require_once("includes/common.php");
10+
require_once("../includes/common.php");
1111

1212
$uniquekey = UNIQUE_KEY;
1313

Diff for: admin/includes/common.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77

88
// Load the common.php language file
9-
require '../lang/English/common.php';
9+
require 'lang/English/common.php';
1010

1111
?>
File renamed without changes.

0 commit comments

Comments
 (0)