Modify ↓
Opened 5 years ago
Closed 5 years ago
#2004 closed Erweiterung (fixed)
admin/includes/application_top.php - Spracheinbindung
| Reported by: | Volker Strähle | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.6.0 |
| Component: | Admin | Version: | trunk |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
In obiger Datei steht
if (is_file(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/' . $current_page)) {
require(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/' . $current_page);
}
Schlage vor das zu ändern in
if (is_file(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/' . $current_page)) {
require_once(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/' . $current_page);
}
Das gibt die Möglichkeit eine vorhandene Sprachdatei in anderen Modulen einzubinden.
Attachments (0)
Note:
See TracTickets
for help on using tickets.

In 13484: