Changeset 6887
- Timestamp:
- 01/25/2019 07:40:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/parser.php
r6633 r6887 223 223 if (strlen($this->text) > 0) 224 224 return $this->token = BBCODE_TEXT; 225 continue ;225 continue 2; 226 226 } 227 227 default: … … 235 235 if (preg_match($this->pat_comment, $this->text)) { 236 236 $this->state = BBCODE_LEXSTATE_TEXT; 237 continue ;237 continue 2; 238 238 } 239 239 if (preg_match($this->pat_comment2, $this->text)) { 240 240 $this->state = BBCODE_LEXSTATE_TEXT; 241 continue ;241 continue 2; 242 242 } 243 243 if (preg_match($this->pat_wiki, $this->text, $matches)) { … … 1483 1483 $tag_body = $this->Internal_CollectTextReverse($output, count($output)-1, $end); 1484 1484 $this->Internal_CleanupWSByPoppingStack(@$rule['before_tag'], $this->stack); 1485 @$this->Internal_UpdateParamsForMissingEndTag(@$token[BBCODE_STACK_TAG]);1485 $this->Internal_UpdateParamsForMissingEndTag(@$token[BBCODE_STACK_TAG]); 1486 1486 $tag_output = $this->DoTag(BBCODE_OUTPUT, $name, 1487 1487 @$token[BBCODE_STACK_TAG]['_default'], @$token[BBCODE_STACK_TAG], $tag_body); … … 2088 2088 } 2089 2089 } 2090
Note: See TracChangeset
for help on using the changeset viewer.