diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-10-30 13:06:57 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-10-30 13:06:57 -0400 |
commit | 56046b11a6ad51c69b72ffffe5d95ce206e64931 (patch) | |
tree | cd5e43bf41773463132aeda95516b3f64073ce5f /engine/lib | |
parent | cb0677fbffa53db9682277bc796384a7af715a91 (diff) | |
download | elgg-56046b11a6ad51c69b72ffffe5d95ce206e64931.tar.gz elgg-56046b11a6ad51c69b72ffffe5d95ce206e64931.tar.bz2 |
removed non-overridable insertion of inline style to links
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/output.php b/engine/lib/output.php index 37ebbb4aa..60bcc72cd 100644 --- a/engine/lib/output.php +++ b/engine/lib/output.php @@ -34,7 +34,7 @@ function parse_urls($text) { $url = trim($url, \'.\'); } $urltext = str_replace("/", "/<wbr />", $url); - return "<a href=\"$url\" style=\"text-decoration:underline;\">$urltext</a>$period"; + return "<a href=\"$url\">$urltext</a>$period"; ' ), $text); |