staticpage changed wrong place of ending form tag

This commit is contained in:
Ian 2013-05-05 13:22:19 +02:00
parent 8663efa430
commit 19fa9e1f37
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,5 @@
4.03 changed wrong place of ending form tag
4.02 Removed some & references, trying to fix issues with more recent PHP versions and core dumps / memory corruption
4.01 PHP 5.4 compat reference fix (~L 1097)

View file

@ -92,7 +92,7 @@ class serendipity_event_staticpage extends serendipity_event
$propbag->add('page_configuration', $this->config);
$propbag->add('type_configuration', $this->config_types);
$propbag->add('author', 'Marco Rinck, Garvin Hicking, David Rolston, Falk Doering, Stephan Manske, Pascal Uhlmann, Ian, Don Chambers');
$propbag->add('version', '4.02');
$propbag->add('version', '4.03');
$propbag->add('requirements', array(
'serendipity' => '1.3',
'smarty' => '2.6.7',
@ -2051,8 +2051,8 @@ class serendipity_event_staticpage extends serendipity_event
$this->showForm($this->config, $this->staticpage);
}
echo "</div>\n";
echo '</form>';
echo '</div>';
break;