vBulletin 4.1.3 / Tournaments & Ladders Manager v4.3.6 :
Bugs:
1. Bug when a small width of the forum:
Attachment 128041
2. Bug in the section ladder (only for guests):
Attachment 128042
===
make Words => in the phrase:
Line 3742:
HTML Code:
<a href="ladders.php?do=acceptmf&id={vb:raw game.id}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')">{vb:rawphrase ladder_accept_match}</a>
Line 3758:
HTML Code:
<input type="submit" class="button" value="{vb:rawphrase ladder_accept_match}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')" />
Line 4121:
HTML Code:
<a href="ladders.php?do=acceptmf&id={vb:raw game.id}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')">{vb:rawphrase ladder_accept_match}</a>
Line 4137:
HTML Code:
<input type="submit" class="button" value="{vb:rawphrase ladder_accept_match}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')" />
Line 6668:
HTML Code:
<a href="competitions.php?do=editcategory&catid={vb:raw cat.catid}">{vb:rawphrase tmnt_editcategory}</a> | <a href="competitions.php?do=killcategory&catid={vb:raw cat.catid}" onclick="return confirm('Are you sure you want to delete this category?')">{vb:rawphrase tmnt_deletecategory}</a>
file javascript_competitions.js : (make Words => in the phrases)
Line 248:
Code:
function deleteladder(id)
{
if (confirm("Are you sure you want to delete this ladder?")) {
window.location.href = 'ladders.php?do=delete&id=' + id;
}
}
Line 484 - 567:
HTML Code:
function deletetmnt(id, title)
{
if (confirm("Are you sure you want to delete '" + title + "'")) {
window.location.href = 'tournaments.php?do=kill&id=' + id;
}
}
function deleteteam(id)
{
if (confirm("Are you sure you want to delete this team?")) {
window.location.href = 'competitions.php?do=killteam&id=' + id;
}
}
function deleteann(id)
{
if (confirm("Are you sure you want to delete this announcement?")) {
window.location.href = 'competitions.php?do=killann&id=' + id;
}
}
function deletecat(id)
{
if (confirm("Are you sure you want to delete this category?")) {
window.location.href = 'competitions.php?do=killcategory&catid=' + id;
}
}
function jointeam(id)
{
if (confirm("Are you sure you want to join this team? \r\n\r\n(The team leader needs to confirm your request before you are shown as a team member)")) {
window.location.href = 'competitions.php?do=reqjointeam&id=' + id;
}
}
function rejectrecruit(id)
{
if (confirm("Are you sure you want to reject this recruit?")) {
window.location.href = 'competitions.php?do=rejectrecruit&id=' + id;
}
}
function confirmrecruit(id)
{
if (confirm("Are you sure you want to confirm this recruit?")) {
window.location.href = 'competitions.php?do=confirmrecruit&id=' + id;
}
}
function deleteplayer(id, tid, userid)
{
if (confirm("Are you sure you remove this player from this tournament?")) {
window.location.href = 'tournaments.php?do=killplayer&id=' + id + '&tid=' + tid + '&userid=' + userid;
}
}
function deleteteamplayer(id)
{
if (confirm("Are you sure you want to remove this player from your team?")) {
window.location.href = 'competitions.php?do=killteamplayer&id=' + id;
}
}
function makeleader(id)
{
if (confirm("Are you sure you want to make this team member a leader?")) {
window.location.href = 'competitions.php?do=makeleader&id=' + id;
}
}
function leaveteam(id)
{
if (confirm("Are you sure you want to leave this team?")) {
window.location.href = 'competitions.php?do=leaveteam&teamid=' + id;
}
}
function makecoleader(id)
{
if (confirm("Are you sure you want to make this team player a co-leader?")) {
window.location.href = 'competitions.php?do=makecoleader&id=' + id;
}
}
function deletecomment(id, tid, userid)
{
if (confirm("Are you sure you want to delete this comment?")) {
window.location.href = 'tournaments.php?do=killcomment&id=' + id + '&tid=' + tid +'&userid=' + userid;
}
}
function finishtmnt(id, title)
{
if (confirm("Are you sure you want to finish '" + title + "'")) {
window.location.href = 'tournaments.php?do=finish&id=' + id;
}
}
Line 580:
Code:
if (confirm("Are you sure you want to progress '" + username + "' to next round?")) {
window.location.href = 'tournaments.php?do=progress&id=' + id + '&userid=' + userid + '&round=' + round + '&slot=' + slot + '&userid2=' + userid2 + '&slot2=' + slot2 + '&round2=' + round2;
}
Line 589:
Code:
var answer = confirm("Are you sure you want to regress '" + username + "' to previous round?");
Line 601:
Code:
if (confirm("Are you sure you want to progress '" + username + "' to next round?")) {