Amend last commit, fix regex

This commit is contained in:
calzoneman 2013-03-20 18:15:52 -05:00
parent 6042c510e1
commit b565324ec3
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ User.prototype.initCallbacks = function() {
}.bind(this));
this.socket.on('joinChannel', function(data) {
if(!data.name.match(/[a-zA-Z0-9]+/))
if(!data.name.match(/^[a-zA-Z0-9]+$/))
return;
// Channel already loaded
if(data.name in Server.channels) {

View file

@ -61,7 +61,7 @@ if(params['channel'] == undefined) {
}
});
}
else if(!params['channel'].match(/[a-zA-Z0-9]+/)) {
else if(!params['channel'].match(/^[a-zA-Z0-9]+$/)) {
$('<div/>').addClass('alert alert-error')
.insertAfter($('.row')[0])[0]
.innerHTML = "<h3>Invalid Channel Name</h3><p>Channel names must conain only numbers and letters</p>";