Öffne die Datei "spaw_control.config.php" (spaw -> config -> spaw_control.config.php) und ändere den folgenden Code Block (Zeile 72 - 82)
// image libraries
$spaw_imglibs = array(
array(
"value" => "images/smilies/",
"text" => "Smilies",
),
array(
"value" => $wysiwyg_userpath."/",
'text' => "Mx-Uploads",
),
);
wie folgt ab
// image libraries
$spaw_imglibs = array(
array(
"value" => $wysiwyg_userpath."/",
'text' => "Mx-Uploads",
),
array(
"value" => "images/smilies/",
"text" => "Smilies",
),
);
den Rest lässt Du unverändert.
Damit wird das Uploadverzeichnis zuerst, und erst dann das Smilie-Verzeichnis angezeigt ...
RtR