diff options
author | MrHyde <mr.hyde@2bad.me> | 2011-10-05 12:17:26 +0200 |
---|---|---|
committer | MrHyde <mr.hyde@2bad.me> | 2011-10-05 12:17:26 +0200 |
commit | 365940a9133f10283b5379348657e2afa69675c9 (patch) | |
tree | 6316200e1fcc415d959d40734036b791062eb960 | |
parent | ec9bdecb9f8f4922a1c727ca7146a296421c327d (diff) |
newline character ending for link_tag() function result
-rw-r--r-- | system/helpers/html_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index b64b60650..10a288e6a 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -365,7 +365,7 @@ if ( ! function_exists('link_tag')) $link .= '/>'; } - + $link .= "\n"; return $link; } |