Fix wrong smiley directory (SMF)
authorMarcel Werk <burntime@woltlab.com>
Wed, 18 Sep 2024 08:46:42 +0000 (10:46 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 18 Sep 2024 08:46:42 +0000 (10:46 +0200)
files/lib/system/exporter/SMF2xExporter.class.php

index c4966e90c79927b66f982d394cc402077fae92e6..2f42b3dd2726574f5a0111077afe2c26b2177151 100644 (file)
@@ -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);