From 4595c255a7a88e6cdc4b3d6d6ef349839671f8f9 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 18 Sep 2024 10:46:42 +0200 Subject: [PATCH] Fix wrong smiley directory (SMF) --- files/lib/system/exporter/SMF2xExporter.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/lib/system/exporter/SMF2xExporter.class.php b/files/lib/system/exporter/SMF2xExporter.class.php index c4966e9..2f42b3d 100644 --- a/files/lib/system/exporter/SMF2xExporter.class.php +++ b/files/lib/system/exporter/SMF2xExporter.class.php @@ -1675,7 +1675,7 @@ final class SMF2xExporter extends AbstractExporter $statement = $this->database->prepareStatement($sql, $limit, $offset); $statement->execute([]); while ($row = $statement->fetchArray()) { - $fileLocation = $this->readOption('smiley_dir') . '/' . $this->readOption('smiley_sets_default') . '/' . $row['filename']; + $fileLocation = $this->readOption('smileys_dir') . '/' . $this->readOption('smiley_sets_default') . '/' . $row['filename']; $aliases = \explode("\n", $row['aliases']); $code = \array_shift($aliases); -- 2.20.1