plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 1d752a847967b1b0f88a624823e52437e97595d2
parent 38bcdc42b52c539273848f734421e13b2bd2a50a
Author: David du Colombier <0intro@gmail.com>
Date:   Mon, 21 Nov 2011 08:40:34 -0500

venti: fix log url in stats

R=rsc
CC=plan9port.codebot
http://codereview.appspot.com/5395043

Diffstat:
Msrc/cmd/venti/srv/www/stats.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/venti/srv/www/stats.js b/src/cmd/venti/srv/www/stats.js @@ -363,7 +363,7 @@ function setof(name, val, list) { function loglinks(list) { var s = "" for(var i=0; i<list.length; i++){ - s = s+" <a href=\"/log/"+list[i]+"\">"+list[i]+"</a>" + s = s+" <a href=\"/log?log="+list[i]+"\">"+list[i]+"</a>" } return s }