Forums / Install & configuration / Where can I find old OE versions?

Where can I find old OE versions?

Author Message

Sander van den Akker

Friday 24 March 2006 5:52:38 am

Yesterday I upgraded to the Online Editor 4.0.3, but unfortunately it contains an annoying bug (links on embedded objects are not saved). I would like to step back to 4.0.2, but I can't find it anywhere on the OE productpages. Please provide a link to an editor archive there.

Thanks!

eZ Publish certified developer
http://auth.ez.no/certification/verify/392313

Tony Wood

Friday 24 March 2006 12:00:54 pm

They used to be here
http://ez.no/download/add_ons/online_editor/ez_publish_3_online_editor

Really eZ should keep older versions. I have the old version so can send it to you if you can confirm you own it.

Tony Wood : twitter.com/tonywood
Vision with Technology
Experts in eZ Publish consulting & development

Power to the Editor!

Free eZ Training : http://www.VisionWT.com/training
eZ Future Podcast : http://www.VisionWT.com/eZ-Future

Sander van den Akker

Friday 24 March 2006 1:18:43 pm

hehe how should I confirm?
but nevermind, I already got it from a backup ;)

eZ Publish certified developer
http://auth.ez.no/certification/verify/392313

Kirill Subbotin

Sunday 26 March 2006 11:21:00 am

OE 4.0.4 with this bug fixed is released. Previous versions are available again.

Here is the patch to make it working in 4.0.3.

Index: ezxmltext/handlers/input/ezdhtmlxmlinput.php
===================================================================
--- ezxmltext/handlers/input/ezdhtmlxmlinput.php        (revision 11027)
+++ ezxmltext/handlers/input/ezdhtmlxmlinput.php        (working copy)
@@ -541,13 +541,13 @@
     var $OutputTags = array(
         'section'   => array(),
 
-        'embed'     => array( 'parsingHandler' => 'breakInlineFlow',
+        'embed'     => array( //'parsingHandler' => 'breakInlineFlow',
                               'structHandler' => 'appendLineParagraph',
                               'publishHandler' => 'publishHandlerEmbed',
                               'attributes' => array( 'alt' => 'size',
                                                      'html_id' => 'xhtml:id' ) ),
 
-        'object'    => array( 'parsingHandler' => 'breakInlineFlow',
+        'object'    => array( //'parsingHandler' => 'breakInlineFlow',
                               'structHandler' => 'structHandlerObject',
                               'publishHandler' => 'publishHandlerObject',
                               'attributes' => array( 'alt' => 'size' ) ),