summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-12 17:25:45 -0400
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-12 17:25:45 -0400
commit4f0c97c6c4d1bbfa4fbbc04f60b8b91dc9dfe270 (patch)
treed0481345b5cbd82fcbf77cf3a351a074bf0c09c4
parente6138a8f40e831c8ef561008992b2cb84d001414 (diff)
parentd1d6436be3cc29d5ae47f6d129980c382365584b (diff)
Merge branch 'master' of /pichat/repo
-rw-r--r--static/js/pichat.js2
-rw-r--r--template/chat.st4
2 files changed, 3 insertions, 3 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index e753195..888e93b 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -198,7 +198,7 @@ function buildUserDiv(user) {
} else {
return '<div class="username">'
+ '<a href="/u/' + escapeHtml(user.nick) + '" target="_blank">'
- + '<img src="/static/noinfo.png" width="50" height="50">'
+ + '<img src="/static/img/noinfo.png" width="50" height="50">'
+ escapeHtml(user.nick) + '</a></div>';
}
}
diff --git a/template/chat.st b/template/chat.st
index 422c640..8a02ccd 100644
--- a/template/chat.st
+++ b/template/chat.st
@@ -49,7 +49,7 @@ $users: { u |
$if(u.avatar)$
<img src="$u.avatar$" width="50" height="50">
$else$
- <img src="/static/noinfo.png">
+ <img src="/static/img/noinfo.png">
$endif$
$u.nick$</a><br>
</div>
@@ -110,4 +110,4 @@ $footer()$
</div>
$preload()$
</body>
-</html> \ No newline at end of file
+</html>