fix: fix regex to return table secedit buttonsSince the hid is optional, it must also be optional in the regex. Alsothis commit introduced named capture groups to make it more obviouswhich part o
fix: fix regex to return table secedit buttonsSince the hid is optional, it must also be optional in the regex. Alsothis commit introduced named capture groups to make it more obviouswhich part of the regex captures what.Also there is now an explicit hid generated for tables, to enablejumping to the correct section after finishing editing.This was broken in 2571786c763e04c7abbf27c2245a5720878dc3f1 or #1966respectively.Known Issues:* since both title and hid are optional, a hid may be misinterpreted asa title if the title is not generated.
show more ...
use only language code, no language name
fix: initialize vars to prevent PHP NoticeA PHP Notice occurred when $url didn't contain a '?'.
Fix rendering null $language going to GeSHi (fixes #2088)
Fix RSS syntax XSS bug (#2081)
Fix sanitation of $language for code highlighting (fixes #2080)
Support Web Video Text Tracks Format subtitles
Fix PHP Notices: Reduce error log noiseWhile DokuWiki suppresses PHP Notices they are still a code smell andshould be fixed. This fixes some PHP Notices that occurred.Some of these fixes could b
Fix PHP Notices: Reduce error log noiseWhile DokuWiki suppresses PHP Notices they are still a code smell andshould be fixed. This fixes some PHP Notices that occurred.Some of these fixes could be refactored into nicer code once we move toPHP 7 and get access to the `??` operator.
Corrected external link syntax, now requires preceding whitespace. Fixes #936.
Corrected internal link pattern to properly handle included square brackets. Fixes #829.
Added support for additional geshi options using an extendable options array.
Adjusted pattern for matching media links to properly handle a single '}' in the link text. Fixes #1587.
always redirect to correct sectionAcross workflow 'show - sectionedit - save/cancel' explicitlytransmit header id to the server. So the server can always redirect tothe correct section even if he
always redirect to correct sectionAcross workflow 'show - sectionedit - save/cancel' explicitlytransmit header id to the server. So the server can always redirect tothe correct section even if headings have the same name. Fixes #1364.
replaced some more each callsThere are still some left in the DifferenceEngine code
I supplemented the existing comments on the methods in which there was not enough information to the standard phpDoc.
replaced broken link with wayback archive. fixes #1814
misspelled foot
added table footer support to rendererThis allows plugins to easily render a <tfoot> element in a table, eventhough it's not used in standard table syntax it makes sense to have itavailable.
fix problems with header that look falsy. fixes #1770
Implemented interwiki substitution for external images (issue #1614).
warn about classes to be valid
allow passing multiple classes as array
minor optimization how cell counts are fixed in tablesarray splice operations are expensive. when many cells in a table roware missing, the operation should be executed only once instead for each
minor optimization how cell counts are fixed in tablesarray splice operations are expensive. when many cells in a table roware missing, the operation should be executed only once instead for eachmissing cell.
12345678910>>...24