]> gitweb.hamatoma.de Git - gadeku.git/commitdiff
V 0.2.3 MediaWiki
authorHamatoma <author@hamatoma.de>
Sat, 27 Apr 2024 20:35:52 +0000 (22:35 +0200)
committerHamatoma <author@hamatoma.de>
Sat, 27 Apr 2024 20:35:52 +0000 (22:35 +0200)
- Mediawiki: Korrekturen bei %date()% und %dateTime()%, %color()% umbenannt in %mark()%

CHANGELOG.md
app/Helpers/MediaWiki.php

index cd74f7108db887027e0c4a20884d7bfac6e8e853..6a7039d4dafcf92b84b6dc6e1c2e30b613c37233 100644 (file)
@@ -1,3 +1,7 @@
+# V 0.2.3 MediaWiki
+
+- Mediawiki: Korrekturen bei %date()% und %dateTime()%, %color()% umbenannt in %mark()%
+
 # V 0.2.2 MediaWiki Page
 
 ## Added
index f43f448352cb37a47e1a197a9b12009951d4f4f7..deef9a7f0f70c4825ee80a0dd808697a2c53842d 100644 (file)
@@ -31,17 +31,17 @@ class MediaWiki extends MediaWikiBase
         $body = preg_replace_callback('/%(\w+)\((.*?)(\|.*?)?\)%/', function ($matches) {
             switch ($matches[1]) {
                 case 'date':
-                    $rc = date('%Y.%m.%d');
+                    $rc = date('Y.m.d');
                     break;
                 case 'dateTime':
-                    $rc = date('%Y.%m.%d %H:%M');
+                    $rc = date('Y.m.d H:i');
                     break;
                 case 'trans':
                     $text = $matches[2];
                     $info = count($matches) > 3 ? $text : substr($matches[3], 1);
                     $rc = "<i><b data-toggle=\"tooltip\" data-placement=\"top\" title=\"$info\">$text</b></i>";
                     break;
-                case 'color':
+                case 'mark':
                     $rc = '<span class="lkn-text-' . substr($matches[3], 1) .'">' . $matches[2] . '</span>';
                     break;
                 case 'add':