Commit graph

1424 commits

Author SHA1 Message Date
Garvin Hicking ff2bb2279a Automagic XML sync 2016-01-06 23:39:48 +01:00
Ian 9d335164ac fix a34de62 a little more for the new pattern 2016-01-06 13:41:11 +01:00
Ian 83f2bf91f8 some last whitespace cleanup to a34de62 2016-01-06 13:15:34 +01:00
Ian a34de62825 fix email pattern 2016-01-06 13:07:09 +01:00
Garvin Hicking 125ac0ecf3 no spaces in filenames, messes up CVS clone repository 2016-01-06 09:15:23 +01:00
Garvin Hicking f22aa55528 Automagic XML sync 2015-12-19 23:43:18 +01:00
Ian 7e7ac7f6db eventcl 1.74 - fix empty aray loop 2015-12-19 18:45:30 +01:00
Ian 8fad2eb465 cke 5.6.1 - allow autosave 2015-12-19 15:58:58 +01:00
Garvin Hicking 17ebdbe0e1 Automagic XML sync 2015-12-17 03:05:12 +01:00
Ian c8d9401489 cke 4.5.6.0 update 2015-12-16 20:08:12 +01:00
Garvin Hicking 268c337a9b Automagic XML sync 2015-12-14 02:05:46 +01:00
onli 7cf706b017 bayes: fix mal-written case-statemens in setupdB
Thanks for catching that, @Ian
2015-12-13 14:17:48 +01:00
Garvin Hicking 5e1c650353 Automagic XML sync 2015-12-13 02:24:25 +01:00
onli b8757a5879 byes: fix setupdb deleting recycler 2015-12-11 23:53:33 +01:00
onli 5d969919fd bayes: fix recycler creation for sqlite 2015-12-11 23:02:48 +01:00
Garvin Hicking b47fe6ce62 Automagic XML sync 2015-12-09 02:35:52 +01:00
Ian 120a30e4fd event_cal 1.73 2015-12-08 14:09:33 +01:00
Garvin Hicking 249656caf5 Automagic XML sync 2015-12-08 02:20:54 +01:00
Ian ea4f3b6487 event_cal 1.72 2015-12-07 16:05:28 +01:00
Garvin Hicking dac4ad5f91 Automagic XML sync 2015-12-06 02:04:14 +01:00
Ian 8cc245d696 cke plugin 4.5.5 2015-12-05 18:31:25 +01:00
Ian a6d493469e isp 0.51 - append CSS to end of eventData 2015-12-05 18:00:15 +01:00
Ian b54a56710c minors 2015-12-05 15:32:53 +01:00
Ian a6f61de003 eventcal 1.71 2015-12-05 14:05:04 +01:00
Garvin Hicking 311a5b646f Automagic XML sync 2015-12-02 02:32:37 +01:00
Ian c3a2344506 contactform - reset encoded quotes for text and subject 2015-12-01 17:45:18 +01:00
Ian ed11b82f48 Fixed POST properties 'disable_markups'
PLEASE NOTE: Since having to deal with a Fatal error Exception thrown:
    Uncaught exception 'ErrorException' with message 'Warning: Illegal string offset 'properties'' in /plugins/serendipity_event_nl2br/serendipity_event_nl2br.php:212
    Stack trace:
    #0 plugins/serendipity_event_nl2br/serendipity_event_nl2br.php(212): errorToExceptionHandler(2, 'Illegal string ...', '/var/www/...', 212, Array)
    #1 include/plugin_api.inc.php(1141): serendipity_event_nl2br->event_hook('frontend_displa...', Object(serendipity_property_bag), Array, NULL)
    #2 plugins/serendipity_event_guestbook/serendipity_plugin_guestbook.php(196): serendipity_plugin_api::hook_event('frontend_displa...', Array)
    #3 include/plugin_api.inc.php(934): serendipity_plugin_guestbook->generate_content('G/xC3/xA4stebuch-Seit...')

    changing previous set
        !in_array($this->instance, $serendipity['POST']['properties']['disable_markups']) &&
    to
        !@in_array($this->instance, $serendipity['POST']['properties']['disable_markups']) &&
    would give us a wrong result check, since the function !@ is returning false, if 2cd param is not an array, not its value!

    See: !@in_array() == FALSE and (isset($serendipity['POST']['properties']['disable_markups']) && !in_array($this->instance, $serendipity['POST']['properties']['disable_markups'])) = TRUE

    $serendipity['POST']['properties']['disable_markups'] = array(false); is the only workable solution for (sidebar?) plugins (see sidebar plugins: guestbook, multilingual), to explicitly allow to apply nl2br to markup (if we want to)
2015-12-01 11:25:58 +01:00
Ian 63d1f279a7 guestbook 3.58: & 1.25 2015-12-01 11:21:45 +01:00
Garvin Hicking 678e80d45c Automagic XML sync 2015-12-01 02:22:09 +01:00
Ian dedec1f411 remove some debug 2015-11-30 18:39:54 +01:00
Ian cb0cc49868 Merge branch 'master' of github.com:s9y/additional_plugins 2015-11-30 18:15:34 +01:00
Ian 5c2865539a event_cal plugin v. 1.70 2015-11-30 18:07:03 +01:00
Garvin Hicking 12f61b3c4f Automagic XML sync 2015-11-29 01:55:19 +01:00
Garvin Hicking efe40388ce Merge pull request #42 from sqall01/patch-1
Update serendipity_event_recaptcha.php
2015-11-28 10:14:52 +01:00
Andre Pawlowski 88316697e2 Update serendipity_event_recaptcha.php
Try to auto-detect if site is served via HTTPS or HTTP. The original version requests the captcha via HTTP. So if the site is served via HTTPS, the browser will block this attempt and no captcha will be shown on the site.

It is not a perfect solution (a better one would be to let the user configure it), since it would not detect the correct value if the webserver is behind a proxy (the proxy serves the site via HTTPS and the webserver via HTTP to the proxy). But this solution will work in most of the cases until a serendipity developer can add an extra configuration option.
2015-11-27 23:25:37 +01:00
Garvin Hicking b297415308 Automagic XML sync 2015-10-20 20:02:41 +02:00
Ian f44309a765 try/catch Exception to not break the flow 2015-10-20 16:55:35 +02:00
Ian 157d0cbb68 Merge branch 'master' of github.com:s9y/additional_plugins 2015-10-20 09:28:15 +02:00
Ian 315d52c830 fix wrong version number 2015-10-20 09:27:42 +02:00
Garvin Hicking 44981c2c11 Automagic XML sync 2015-10-20 06:28:57 +02:00
Ian d110697e01 Upgrade to CKEDITOR 4.5. Series, update 4 2015-10-19 17:09:34 +02:00
Ian d3ea1e20f9 Try catch exception error to not break the flow 2015-10-19 14:09:53 +02:00
Garvin Hicking 75fd85125d Automagic XML sync 2015-09-15 06:39:07 +02:00
Ian 1d3b4bd2a1 Fix 'array sizes are inconsistent' error
with mediainsert tagged entries and array_multisort()
This may appear if you have objects and images on the same ML page pagination
2015-09-14 16:18:38 +02:00
Ian 04d4407a42 Merge branch 'master' of github.com:s9y/additional_plugins 2015-09-04 09:39:04 +02:00
Ian fb44f08a1d bee - lang de typos 2015-09-04 09:38:29 +02:00
Garvin Hicking a6a7e0d626 Automagic XML sync 2015-09-04 07:15:41 +02:00
Ian d6166ffaa7 add a linebreak and fix some whitespaces 2015-09-03 11:43:49 +02:00
Garvin Hicking bec25c8f5f Automagic XML sync 2015-09-01 06:14:34 +02:00
Ian 07a887bc71 Merge branch 'master' of github.com:s9y/additional_plugins 2015-08-31 17:50:13 +02:00