diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-01-12 18:04:10 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-01-12 18:04:10 +0100 |
commit | fc514ca3578c59753e059fd6b8a2415424850535 (patch) | |
tree | ca77060473bd78616ca157b8a674a1f420c8e015 /system/libraries/Typography.php | |
parent | 1e42cdc1d3b4c919e0e4dec6a2ce81c360e946af (diff) | |
parent | 8f80bc4f855f78efbcb6344ea29cf67647b6772b (diff) |
Merge pull request #846 from aquariuz/develop
fixed 2 bugs
Diffstat (limited to 'system/libraries/Typography.php')
-rw-r--r-- | system/libraries/Typography.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php index 76f0d4fc5..46c73ef8b 100644 --- a/system/libraries/Typography.php +++ b/system/libraries/Typography.php @@ -144,7 +144,7 @@ class CI_Typography { $process = TRUE; $paragraph = FALSE; - for ($i = 1, $c = count($chunks); $i <= $c; $i++) + for ($i = 0, $c = count($chunks) - 1; $i <= $c; $i++) { // Are we dealing with a tag? If so, we'll skip the processing for this cycle. // Well also set the "process" flag which allows us to skip <pre> tags and a few other things. |