Skip to content

Commit 9fb1f63

Browse files
committed
Updated version number to 1.2.4.
1 parent 8b6da4c commit 9fb1f63

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

PHP Markdown Extra Readme.text

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PHP Markdown Extra
22
==================
33

4-
Version 1.2.3 - Wed 31 Dec 2008
4+
Version 1.2.4 - Sat 10 Oct 2009
55

66
by Michel Fortin
77
<http://michelf.com/>
@@ -252,7 +252,7 @@ Version History
252252
* Fixed some corner-cases mixing underscore-ephasis and asterisk-emphasis.
253253

254254

255-
Current Extra:
255+
Extra 1.2.4:
256256

257257
* Fixed a problem where unterminated tags in indented code blocks could
258258
prevent proper escaping of characaters in the code block.

markdown.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009
16-
define( 'MARKDOWNEXTRA_VERSION', "1.2.3" ); # Wed 31 Dec 2008
16+
define( 'MARKDOWNEXTRA_VERSION', "1.2.4" ); # Sat 10 Oct 2009
1717

1818

1919
#
@@ -71,7 +71,7 @@ function Markdown($text) {
7171
Plugin Name: Markdown Extra
7272
Plugin URI: http://michelf.com/projects/php-markdown/
7373
Description: <a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>. <a href="http://michelf.com/projects/php-markdown/">More...</a>
74-
Version: 1.2.3
74+
Version: 1.2.4
7575
Author: Michel Fortin
7676
Author URI: http://michelf.com/
7777
*/
@@ -2698,7 +2698,7 @@ function appendFootnotes($text) {
26982698
if (!empty($this->footnotes_ordered)) {
26992699
$text .= "\n\n";
27002700
$text .= "<div class=\"footnotes\">\n";
2701-
$text .= "<hr". MARKDOWN_EMPTY_ELEMENT_SUFFIX ."\n";
2701+
$text .= "<hr". $this->empty_element_suffix ."\n";
27022702
$text .= "<ol>\n\n";
27032703

27042704
$attr = " rev=\"footnote\"";

0 commit comments

Comments
 (0)