ae4e91f095
php 8 compat fix when showing RSS feed
2021-05-18 19:39:14 +02:00
a8e919961b
php 8 compat fix for spartacus when plugin upgrades are available
2021-05-18 19:33:19 +02:00
d2fb86fc2f
syndication 2.3.0: Drop subtome JS plugin
2021-05-18 19:32:30 +02:00
17786592e7
php 8 compat fixes for plugin installation
2021-05-13 15:33:27 +02:00
25cfb97ece
php8 compat fixes to save entries again
2021-05-09 17:17:54 +02:00
b2707b81ae
spamblock 1.89.3: php8 compat
2021-05-06 20:45:19 +02:00
f996065a89
spartacus 2.39.2: php8 compat
2021-05-06 20:45:19 +02:00
6909411452
entryproperties 1.41.6: PHP 8 compat fixes
2021-04-19 17:19:44 +02:00
a3253a0d55
syndication 2.2.4: php8 compat
2021-04-19 17:19:44 +02:00
0c84f10b7c
responsive 0.5.2: php8 compat
2021-04-19 17:19:44 +02:00
2261e112eb
nl2br 2.21.9: php8 compat
2021-04-19 17:19:44 +02:00
a32bb4f2ee
emoticate 1.11.1: php 8 compat
2021-04-19 17:19:44 +02:00
21a4448d33
s9ymarkup 1.4.1: s9ymarkup
2021-04-19 17:19:44 +02:00
3d975cd562
syntax fixes, if without brackets
2020-06-06 01:51:25 +02:00
2be8e6ba2a
Use original image for srcset when it is small ( #474 )
2020-05-28 17:50:39 +02:00
9f0af1f275
plugin nl2br: add newlines to improve readability of the output
2020-05-27 21:49:14 +02:00
0cf227f335
Totally resorted the language files, added subscription strings
2020-05-27 21:49:11 +02:00
695055f50c
plugin nl2br: add missing 'u' inline element
2020-05-15 13:33:53 +02:00
dd455ae507
Add Gitlab as Spartacus mirror
2020-05-03 13:59:23 +02:00
c479e1c9d2
escape filter words for regexp
2020-04-30 10:22:27 +02:00
2b6a1a6a3b
[plugin recententries] Fix multilingual issues
2020-04-28 20:18:35 +02:00
a80a57b780
[plugin_comments] Don't strip HTML unconditionally.
...
If serendipity_event_unstrip_tags is active, we
don't want to strip HTML tags from comments; we
want to keep and encode them with entities. So
we should do that here, too.
As the frontend_display hook - that is catched by
serendipity_event_unstrip_tags - is called quite
late, we have to skip the strip_tags() call
before truncatin the entry.
(I'm not sure why we first strip _all_ tags and
later on keep _some_ tags (that have already
been removed), but that's maybe because the
frontend_display hook may have re-added some
tags? Be it as it may, we do that for 14
years, so I don't want to change that now.)
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-04-24 15:24:10 +02:00
928f220c5a
[event nl2br] fix concatenation and spaces between newlines
2020-04-23 00:05:22 +02:00
f32be57fb5
Fix accidental deletion of extended properties.
...
Was mostly fixed by 8b51c37b98
(see #261 ),
but which missed 03cc73d77e
and the other
older code before the foreach() loop.
Later on, 7fe8d91bc2
did the check for
'propertyform' the wrong way around.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-04-18 22:33:20 +02:00
a3f39396c6
[event_spamblock] Don't refresh timeout when displaying preview
2020-04-14 14:07:02 +02:00
bb021db228
Add note to serendipity_event_spartacus.php.
...
See #685 .
Plugin version not incremented on purpose.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-04-11 12:56:42 +02:00
4010d57d28
Fix SQL error in plugin_history.
...
Since merging #665 `serendipity_plugin_history`
breaks with a SQL error message on every archive
page but the first one; see #693 for reason
and context.
Unset `$serendipity['GET']['page']` before
calling `serendipity_fetchEntries(`)` (and
reset afterwards) to fix that. That's the
correct way, I think, as
`serendipity_fetchEntries()` is not called
in page context here.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-04-11 10:52:50 +02:00
5ca9da9a56
[event_spartacus] Change dashboard upgrade notification to simple link.
...
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-28 15:22:58 +01:00
261bac42f1
Bump event_spartacus version
...
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-28 13:26:06 +01:00
ded855f096
[event_spartacus] Simplify count_plugin_upgrades()
...
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-28 13:21:09 +01:00
5adf3cda02
One adv_opts_box should be enough for everybody.
...
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-27 20:18:46 +01:00
d690a751d3
Up spamblock version, document #683
2020-03-25 22:33:19 +01:00
57cbaaa58b
Update spamblock query to work in MySQL 5.7+ with default "strict" mode
...
The old query will fail with ONLY_FULL_GROUP_BY set which is default from
MySQL 5.7.5 onwards. This results in the .htaccess file not being updated.
Also adding some fencing to the foreach to prevent php error messages.
2020-03-25 22:28:25 +01:00
04a3d34176
"$cachedtype" was set twice.
...
"$cachedtype" is saved anayway before returning;
no need to set it here.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-23 20:50:46 +01:00
da4985f543
[plugin_comments] Fix wordwrap at wound boundaries.
...
Add ChangeLog.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2020-03-21 16:08:55 +01:00
9dd182b24c
fix Issue #661 in plugin_recententries
2019-12-30 22:03:06 +01:00
375d96fb36
[TASK] Updates serendipity_event_mailer: Prepend body option, force sending mails, fixed striptag label
2019-12-03 14:25:03 +01:00
a946c80ac1
nl2br: a-elements can now contain everything, content of html comments is ignored
2019-11-25 20:14:55 +01:00
42a6649474
[nl2br] Document addition of figure/figcaption.
...
Document 8c399f2147
and 92653a1dec
.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2019-11-02 15:03:11 +01:00
c9e03912ed
[spamblock] Document timeout protection.
...
Document f9d43d20a3
and 0193f8a314
.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2019-11-02 15:03:11 +01:00
92653a1dec
nl2br increase version number
2019-11-02 14:20:18 +01:00
8c399f2147
included figure and figcaption tags in nl2br
2019-11-02 14:20:18 +01:00
0193f8a314
reinserted validation of config logfile string. Was deleted unintentionally.
2019-11-02 14:20:18 +01:00
f9d43d20a3
added timeout protection against spambots into event_spamblock
2019-11-02 14:20:18 +01:00
b4f0b35a5d
Merge pull request #650 from stephanbrunker/master
...
Fix a lot of single issues and overhaul the language settings
2019-10-17 13:46:06 +02:00
27703c5482
Add changes to NEWS, bump plugin version number.
...
* Document #646 and #649 .
* Bump event_bbcode version number.
Signed-off-by: Thomas Hochstein <thh@inter.net >
2019-10-16 12:25:48 +02:00
348f5fbc12
Add "lower/upper roman" ordered list styles.
...
Fixes #647 .
Signed-off-by: Thomas Hochstein <thh@inter.net >
2019-10-15 22:48:28 +02:00
ea371f6a4e
fixed requested changes, array processing of multilingual_stip_langs
2019-10-15 22:45:02 +02:00
502b837dd6
Fix a lot of single issues and overhaul the language settings
...
see docs/NEWS and the plugin/changelog files for details
2019-10-13 22:49:03 +02:00
7ab1cf9091
[BUGFIX] [SECURITY] Fixes only logging to .log and.txt filetype extensions
2019-09-17 10:50:28 +02:00