summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-30 03:02:47 +0000
committerTim Potter <tpot@samba.org>2001-05-30 03:02:47 +0000
commit16031364a8ce20cf425c758d3fd5035a776e9d9b (patch)
tree9f0e059d86b3703fff258e681bb748b86ee2a9e5
parentba106b9b07b23c3dc1b40c8feb10cff173faa07a (diff)
downloadsamba-16031364a8ce20cf425c758d3fd5035a776e9d9b.tar.gz
samba-16031364a8ce20cf425c758d3fd5035a776e9d9b.tar.xz
samba-16031364a8ce20cf425c758d3fd5035a776e9d9b.zip
Add border=0 in included swat images to get rid of the link border stuff.
Much prettier looking.
-rw-r--r--source/web/swat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/web/swat.c b/source/web/swat.c
index 9126d059146..b25641909f1 100644
--- a/source/web/swat.c
+++ b/source/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);
}