mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-07-15 17:08:11 +00:00
move submit out of contentContainer
This commit is contained in:
parent
1c6c36eb52
commit
bd73b57a63
|
@ -82,13 +82,13 @@ $(document).ready(function() {
|
||||||
$this->pageNavigation($this->getFolderPathHTML($folder, true, $document), "view_document", $document);
|
$this->pageNavigation($this->getFolderPathHTML($folder, true, $document), "view_document", $document);
|
||||||
|
|
||||||
$this->contentHeading(getMLText("edit_comment"));
|
$this->contentHeading(getMLText("edit_comment"));
|
||||||
$this->contentContainerStart();
|
|
||||||
?>
|
?>
|
||||||
<form class="form-horizontal" action="../op/op.EditComment.php" id="form1" name="form1" method="post">
|
<form class="form-horizontal" action="../op/op.EditComment.php" id="form1" name="form1" method="post">
|
||||||
<?php echo createHiddenFieldWithKey('editcomment'); ?>
|
<?php echo createHiddenFieldWithKey('editcomment'); ?>
|
||||||
<input type="Hidden" name="documentid" value="<?php print $document->getID();?>">
|
<input type="Hidden" name="documentid" value="<?php print $document->getID();?>">
|
||||||
<input type="Hidden" name="version" value="<?php print $version->getVersion();?>">
|
<input type="Hidden" name="version" value="<?php print $version->getVersion();?>">
|
||||||
<?php
|
<?php
|
||||||
|
$this->contentContainerStart();
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("comment"),
|
getMLText("comment"),
|
||||||
array(
|
array(
|
||||||
|
@ -99,11 +99,11 @@ $(document).ready(function() {
|
||||||
'value'=>htmlspecialchars($version->getComment())
|
'value'=>htmlspecialchars($version->getComment())
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
$this->contentContainerEnd();
|
||||||
$this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText('save'));
|
$this->formSubmit("<i class=\"fa fa-save\"></i> ".getMLText('save'));
|
||||||
?>
|
?>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
$this->contentContainerEnd();
|
|
||||||
$this->contentEnd();
|
$this->contentEnd();
|
||||||
$this->htmlEndPage();
|
$this->htmlEndPage();
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user