| @@ -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 |