From: Marcel Werk Date: Wed, 18 Sep 2024 08:46:42 +0000 (+0200) Subject: Fix wrong smiley directory (SMF) X-Git-Tag: 6.1.0_Beta_2~1^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4595c255a7a88e6cdc4b3d6d6ef349839671f8f9;p=GitHub%2FWoltLab%2Fcom.woltlab.wcf.exporter.git Fix wrong smiley directory (SMF) --- 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);