additional_plugins/serendipity_event_linktrimmer/ChangeLog
Eike Rathke 3b3dc99159
linktrimmer 1.6.6: Avoid error in javascript generation (#151)
is_countable() would demand PHP >= 7.3.0 as of which it is available.
See https://www.php.net/manual/en/function.is-countable.php
Use a polyfill for PHP < 7.3.0

Loading serendipity_admin.php with $serendipity['production'] = false
yielded a red alert box:

The Serendipity JavaScript-library could not be loaded. This can happen
due to PHP or Plugin errors, or even a malformed browser cache. To check
the exact error please open
https://.../index.php?/plugin/admin/serendipity_editor.js manually in
your browser and check for error messages.

Where at the end of that file could be found:

== ERROR-REPORT (BETA/ALPHA-BUILDS) ==
<p><b>Warning:</b> count(): Parameter must be an array or an object that
implements Countable in
plugins/serendipity_event_linktrimmer/serendipity_event_linktrimmer.php
on line 323.</p>
2023-01-01 02:09:01 +01:00

46 lines
1 KiB
Plaintext

1.6.6: Check is_countable() before count()
1.6.5: Hotfixes for PHP 8 (surrim)
1.6.4: Added German translation.
1.6.3: Iconfont a11y fix (yellowled)
1.6.2: Fix for Smarty2 template
1.6.1: Fix form action (from "?" to "") to work under Linux
1.6: do not include serendipity.js in frame, because of
ReferenceError: jQuery is not defined
1.5: Fix for enablePopup in >= 2.0
1.4:
* Adapted backend markup for 2.0 backend.
* Fixed bad css float on startpage
* Fixed wysiwyg button link creator
* Removed dev-POC-dashboard plugin check
1.3:
* Added new option to hide linktrimmer on backends frontpage
* Use nativ API method here - extends S9y version >= 1.3
1.1, 1.2: Static php5 function fixes
1.0: Do not show in Dashboard (POC)
0.9: Added CKEDITOR ready eventData image path
0.8: Latest: Smarty3 forward compatibility
0.7: Use latin1_general_cs charset due to lower/uppercase lookups, thanks to
danst0
0.6: Allow to be used in other plugins (danst0)
0.5: Remove unneeded die()
0.1: Initial Release. See Documentation.