summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-11-23 03:36:10 +0000
committerAndrew Tridgell <tridge@samba.org>1998-11-23 03:36:10 +0000
commit8757254f39ab75c93e9917a6bdf99475c6a024d7 (patch)
treed29c188100e79b2ee4374b43efe61db80e65947c /source3/web
parentfd1533862ed8bb0c9e0fb4996a37dd784fd17eae (diff)
downloadsamba-8757254f39ab75c93e9917a6bdf99475c6a024d7.tar.gz
samba-8757254f39ab75c93e9917a6bdf99475c6a024d7.tar.bz2
samba-8757254f39ab75c93e9917a6bdf99475c6a024d7.zip
changed string_sub() to replace " ; and ` in the inserted string with _
use all_string_sub() if you don't want this. (This used to be commit a3357ab49335106674fe7a7481cd0f146d74fbe5)
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/statuspage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c
index 81564390a0..faf1dcb20d 100644
--- a/source3/web/statuspage.c
+++ b/source3/web/statuspage.c
@@ -26,7 +26,7 @@ static char *tstring(time_t t)
{
static pstring buf;
pstrcpy(buf, asctime(LocalTime(&t)));
- string_sub(buf," ","&nbsp;");
+ all_string_sub(buf," ","&nbsp;");
return buf;
}