PluginProbe
Page Builder: Pagelayer – Drag and Drop website builder / 2.2.0
Page Builder: Pagelayer – Drag and Drop website builder v2.2.0
2.2.1 2.2.0 2.1.9 2.1.8 2.1.7 2.1.6 2.1.5 2.1.4 2.1.3 trunk 0.9.0 0.9.1 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 1.0.0 1.0.2 1.0.3 1.0.4 1.0.5 All 129 releases
← All changes | lib/pquery/gan_parser_html.php +3 -3 0.9.32.2.0 View file →
@@ -6,9 +6,9 @@
6 6 * @license http://opensource.org/licenses/LGPL-2.1 LGPL-2.1
7 7 * @package pQuery
8 8 */
9 9
10 -namespace pQuery;
10 +namespace pagelayerQuery;
11 11
12 12 /**
13 13 * Parses a HTML document
14 14 *
@@ -405,9 +405,9 @@
405 405 if (substr($this->doc, $this->pos + 2, 2) === '--') {
406 406 $this->status['comment'] = true;
407 407
408 408 if (($this->doc[$this->pos + 4] === '[') && (strcasecmp(substr($this->doc, $this->pos + 5, 2), 'if') === 0)) {
409 - return $this->parse_conditional();
409 + return $this->parse_comment();
410 410 } else {
411 411 return $this->parse_comment();
412 412 }
413 413 } else {
@@ -487,9 +487,9 @@
487 487 * Root object
488 488 * @internal If string, then it will create a new instance as root
489 489 * @var DomNode
490 490 */
491 - var $root = 'pQuery\\DomNode';
491 + var $root = 'pagelayerQuery\\DomNode';
492 492
493 493 /**
494 494 * Current parsing hierarchy
495 495 * @internal Root is always at index 0, current tag is at the end of the array