Changeset 1713
- Timestamp:
- 03/27/2008 08:38:41 PM (8 months ago)
- Files:
-
- trunk/scripts/stringparser.class.php (modified) (1 diff)
- trunk/scripts/stringparser_bbcode.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/scripts/stringparser.class.php
r1688 r1713 7 7 * upon this class. 8 8 * 9 * Version: 0.3. 29 * Version: 0.3.3 10 10 * 11 11 * @author Christian Seiler <spam@christian-seiler.de> 12 * @copyright Christian Seiler 200 612 * @copyright Christian Seiler 2004-2008 13 13 * @package stringparser 14 14 * 15 15 * The MIT License 16 16 * 17 * Copyright (c) 2004-200 7Christian Seiler17 * Copyright (c) 2004-2009 Christian Seiler 18 18 * 19 19 * Permission is hereby granted, free of charge, to any person obtaining a copy trunk/scripts/stringparser_bbcode.class.php
r1688 r1713 3 3 * BB code string parsing class 4 4 * 5 * Version: 0.3. 25 * Version: 0.3.3 6 6 * 7 7 * @author Christian Seiler <spam@christian-seiler.de> 8 * @copyright Christian Seiler 200 68 * @copyright Christian Seiler 2004-2008 9 9 * @package stringparser 10 10 * 11 11 * The MIT License 12 12 * 13 * Copyright (c) 2004-200 7Christian Seiler13 * Copyright (c) 2004-2008 Christian Seiler 14 14 * 15 15 * Permission is hereby granted, free of charge, to any person obtaining a copy … … 772 772 function _openElement ($type = 0) { 773 773 $name = $this->_getCanonicalName ($this->_topNode ('name')); 774 //var_dump ($name);775 774 if ($name === false) { 776 775 return $this->_reparseAfterCurrentBlock (); … … 998 997 $cmp_name = $this->_stack[$i]->name (); 999 998 } 1000 if ($cmp_name == $ name) {999 if ($cmp_name == $lname) { 1001 1000 return $this->_stack[$i]; 1002 1001 }
