projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cea90f
)
Do not show the form if it has not been build because of an error.
author
Gunnar Wrobel
<p@rdus.de>
Fri, 3 Apr 2009 19:16:08 +0000
(21:16 +0200)
committer
Gunnar Wrobel
<p@rdus.de>
Fri, 3 Apr 2009 19:16:08 +0000
(21:16 +0200)
koward/app/views/Object/view.html.php
patch
|
blob
|
history
diff --git
a/koward/app/views/Object/view.html.php
b/koward/app/views/Object/view.html.php
index
f261764
..
c9f219c
100644
(file)
--- a/
koward/app/views/Object/view.html.php
+++ b/
koward/app/views/Object/view.html.php
@@
-1,3
+1,6
@@
<?= $this->renderPartial('header'); ?>
<?= $this->renderPartial('menu'); ?>
-<?= $this->form->renderInactive(new Horde_Form_Renderer(), $this->vars); ?>
\ No newline at end of file
+<?php
+if (isset($this->form)) {
+ echo $this->form->renderInactive(new Horde_Form_Renderer(), $this->vars);
+}
\ No newline at end of file