mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
Fix use of non-initialised variable
This commit is contained in:
parent
13e4efa221
commit
4c79b3d179
@ -25,7 +25,6 @@
|
|||||||
*/
|
*/
|
||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
use \DateTime;
|
|
||||||
use \Zend_View_Helper_FormElement;
|
use \Zend_View_Helper_FormElement;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -63,7 +62,7 @@ class Zend_View_Helper_FormDateTime extends Zend_View_Helper_FormElement
|
|||||||
// Build the element
|
// Build the element
|
||||||
$xhtml = '<div class="datetime">'
|
$xhtml = '<div class="datetime">'
|
||||||
. '<input type="text" name="' . $this->view->escape($name) . '"'
|
. '<input type="text" name="' . $this->view->escape($name) . '"'
|
||||||
. ' id="' . $this->view->escape($id) . '"'
|
. ' id="' . $this->view->escape($name) . '"'
|
||||||
. $value
|
. $value
|
||||||
. $disabled
|
. $disabled
|
||||||
. $this->_htmlAttribs($attribs)
|
. $this->_htmlAttribs($attribs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user