diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 2a28135..d2bb895 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1551,8 +1551,13 @@ class PHPFSPOT { break; case 'MoinMoin': - // [%pictureurl% %thumbnailurl%] - print htmlspecialchars(" * [".$orig_url." ".$thumb_url."&fake=1.jpg]") ."<br />\n"; + // "[%pictureurl% %thumbnailurl%]" + print htmlspecialchars("[".$orig_url." ".$thumb_url."&fake=1.jpg]") ."<br />\n"; + break; + + case 'MoinMoinList': + // " * [%pictureurl% %thumbnailurl%]" + print " " . htmlspecialchars("* [".$orig_url." ".$thumb_url."&fake=1.jpg]") ."<br />\n"; break; } |