Update of /cvsroot/php-blog/additional_plugins/serendipity_event_contactform
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21390/serendipity_event_contactform
Modified Files:
ChangeLog serendipity_event_contactform.php
Log Message:
gitclone.sh autocommit
Index: ChangeLog
===================================================================
RCS file: /cvsroot/php-blog/additional_plugins/serendipity_event_contactform/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- ChangeLog 5 Mar 2017 21:34:28 -0000 1.10
+++ ChangeLog 31 Mar 2017 20:35:50 -0000 1.11
@@ -1,3 +1,7 @@
+1.21
+-----
+ * Reset content message, as also needed in staticpage plugin.
+
1.20
-----
* change xhtml to html for case: radio, checkbox and select
Index: serendipity_event_contactform.php
===================================================================
RCS file: /cvsroot/php-blog/additional_plugins/serendipity_event_contactform/serendipity_event_contactform.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- serendipity_event_contactform.php 5 Mar 2017 21:34:28 -0000 1.50
+++ serendipity_event_contactform.php 31 Mar 2017 20:35:50 -0000 1.51
@@ -29,7 +29,7 @@
$propbag->add('event_hooks', array('entries_header' => true, 'entry_display' => true, 'genpage' => true));
$propbag->add('configuration', array('permalink', 'pagetitle', 'backend_title', 'email', 'subject', 'counter', 'intro', 'sent', 'articleformat', 'dynamic_tpl', 'dynamic_fields', 'dynamic_fields_tpl', 'dynamic_fields_desc'));
$propbag->add('author', 'Garvin Hicking');
- $propbag->add('version', '1.20');
+ $propbag->add('version', '1.21');
$propbag->add('requirements', array(
'serendipity' => '1.3',
'smarty' => '2.6.7',
@@ -366,6 +366,8 @@
function show() {
global $serendipity;
+
+ $serendipity['content_message'] = ''; // Reset message for 404 error handling which is now overriden
if ($this->selected()) {
$form_fields = array();
|