|
@@ 254-258 (lines=5) @@
|
| 251 |
|
$label->appendChild(Widget::Input('meta[handle]', |
| 252 |
|
(isset($meta['handle']) ? General::sanitize($meta['handle']) : null))); |
| 253 |
|
|
| 254 |
|
if (isset($this->_errors['handle'])) { |
| 255 |
|
$handlediv->appendChild(Widget::Error($label, $this->_errors['handle'])); |
| 256 |
|
} else { |
| 257 |
|
$handlediv->appendChild($label); |
| 258 |
|
} |
| 259 |
|
|
| 260 |
|
$div->appendChild($handlediv); |
| 261 |
|
|
|
@@ 515-519 (lines=5) @@
|
| 512 |
|
$label->appendChild(Widget::Input('meta[handle]', |
| 513 |
|
(isset($meta['handle']) ? General::sanitize($meta['handle']) : null))); |
| 514 |
|
|
| 515 |
|
if (isset($this->_errors['handle'])) { |
| 516 |
|
$handlediv->appendChild(Widget::Error($label, $this->_errors['handle'])); |
| 517 |
|
} else { |
| 518 |
|
$handlediv->appendChild($label); |
| 519 |
|
} |
| 520 |
|
|
| 521 |
|
$div->appendChild($handlediv); |
| 522 |
|
|