diff options
author | Tim Potter <tpot@samba.org> | 2001-05-30 03:02:47 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-05-30 03:02:47 +0000 |
commit | aded7fc8580c0837ad195f652864b9b7481d60ab (patch) | |
tree | 7c6fe17243c5c96f481c14ffd02d174c6739c051 | |
parent | 40518cf9b4224e32ab8bbf87dbb35368a5acd129 (diff) | |
download | samba-aded7fc8580c0837ad195f652864b9b7481d60ab.tar.gz samba-aded7fc8580c0837ad195f652864b9b7481d60ab.tar.bz2 samba-aded7fc8580c0837ad195f652864b9b7481d60ab.zip |
Add border=0 in included swat images to get rid of the link border stuff.
Much prettier looking.
(This used to be commit 16031364a8ce20cf425c758d3fd5035a776e9d9b)
-rw-r--r-- | source3/web/swat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index 9126d05914..b25641909f 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -421,7 +421,7 @@ static void commit_parameters(int snum) ****************************************************************************/ static void image_link(char *name,char *hlink, char *src) { - printf("<A HREF=\"%s/%s\"><img src=\"/swat/%s\" alt=\"%s\"></A>\n", + printf("<A HREF=\"%s/%s\"><img border=\"0\" src=\"/swat/%s\" alt=\"%s\"></A>\n", cgi_baseurl(), hlink, src, name); } |