diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-07-21 13:58:56 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-07-21 13:58:56 +0200 |
commit | c507418db9a35ef11965cb9226e6f23f3b41b195 (patch) | |
tree | 9515d8c933fcf52bee4217a14da2b7f0475f71d1 /system/helpers/html_helper.php | |
parent | 3a6ab8d73340fff064aa9677af7608766d506e35 (diff) |
Removed added newlines ("\n") from most form and html helper functions.
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r-- | system/helpers/html_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 7a61055f7..c3f0fbc29 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -274,7 +274,7 @@ if ( ! function_exists('link_tag')) }
}
- $link .= "/>\n";
+ $link .= "/>";
}
else
{
@@ -303,7 +303,7 @@ if ( ! function_exists('link_tag')) $link .= 'title="'.$title.'" ';
}
- $link .= '/>'."\n";
+ $link .= '/>'."";
}
|