CVS update: /cowiki/includes/cowiki/class/parse/
[email protected] 3 Aug 2005 16:34:37 -0000
| Newsgroups | gmane.comp.php.cowiki.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: cmarble Date: 2005/08/03 09:34:37 Modified: cowiki/includes/cowiki/class/parse/class.WikiReverseParser.php Log: Issue number: 237 Forgot to alter the xml_end_handler to reflect legacy name changes. File Changes: Directory: /cowiki/includes/cowiki/class/parse/ =============================================== File [changed]: class.WikiReverseParser.php Url: http://cowiki.tigris.org/source/browse/cowiki/includes/cowiki/class/parse/class.WikiReverseParser.php?r1=1.26&r2=1.27 Delta lines: +4 -2 ------------------- --- class.WikiReverseParser.php 2 Aug 2005 19:57:58 -0000 1.26 +++ class.WikiReverseParser.php 3 Aug 2005 16:34:34 -0000 1.27 @@ -2,7 +2,7 @@ /** * - * $Id: class.WikiReverseParser.php,v 1.26 2005/08/02 19:57:58 cmarble Exp $ + * $Id: class.WikiReverseParser.php,v 1.27 2005/08/03 16:34:34 cmarble Exp $ * * This file is part of coWiki. coWiki is free software under the terms of * the GNU General Public License (GPL). Read the LICENSE file. If you did @@ -17,7 +17,7 @@ * @author Daniel T. Gorski, <[email protected]> * @copyright (C) Daniel T. Gorski, {@link http://www.develnet.org} * @license http://www.gnu.org/licenses/gpl.html - * @version $Revision: 1.26 $ + * @version $Revision: 1.27 $ * */ @@ -700,6 +700,7 @@ $this->sContent .= "=="; } break; + case 'strong': case 'b': if(array_pop($this->aState)==13){ $this->sContent .= "</b>"; @@ -714,6 +715,7 @@ $this->sContent .= "__"; } break; + case 'em': case 'i': if(array_pop($this->aState)==15){ $this->sContent .= "</i>";