summaryrefslogtreecommitdiffstats
path: root/system/helpers/html_helper.php
diff options
context:
space:
mode:
authorMrHyde <mr.hyde@2bad.me>2011-10-05 12:17:26 +0200
committerMrHyde <mr.hyde@2bad.me>2011-10-05 12:17:26 +0200
commit365940a9133f10283b5379348657e2afa69675c9 (patch)
tree6316200e1fcc415d959d40734036b791062eb960 /system/helpers/html_helper.php
parentec9bdecb9f8f4922a1c727ca7146a296421c327d (diff)
newline character ending for link_tag() function result
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r--system/helpers/html_helper.php2
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;
}