Edit missing in the Album, the security token in the upload template is missing.
Change:
PHP Code:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
$usercss
<title>$vboptions[bbtitle] - $vbphrase[upload_pictures]</title>
</head>
<body>
$header
$navbar
<div id="usercss">
$errortable
<form action="album.php?do=uploadpictures&albumid=$albuminfo[albumid]" method="post" enctype="multipart/form-data">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">
<if condition="!$usercss">
<img src="$stylevar[imgdir_misc]/tcat_tl.gif" alt="" border="0" style="position:relative; top: -7px; left: -7px; float:left;" />
<img src="$stylevar[imgdir_misc]/tcat_tr.gif" alt="" border="0" style="position:relative; top: -7px; left: 7px; float:right;" />
</if>
$vbphrase[upload_pictures]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<fieldset class="fieldset">
<legend>$vbphrase[pictures_to_upload]</legend>
<div style="padding:$stylevar[formspacer]px">$uploadbits</div>
<if condition="$show['moderation']">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[picture_moderation_enabled]
</div>
</if>
</fieldset>
<if condition="$show['limit_info']">
<fieldset class="fieldset">
<legend>$vbphrase[picture_limits]</legend>
<div style="padding:$stylevar[formspacer]px">
<table border="0" cellpadding="2" cellspacing="0">
<col style="padding-$stylevar[right]: $stylevar[cellpadding]px" />
<if condition="$show['max_pic_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[pictures_remaining]</td>
<td>$limit_info[pic_remain]</td>
</tr>
</if>
<if condition="$show['max_totalsize_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[space_remaining]</td>
<td>$limit_info[totalsize_remain]</td>
</tr>
</if>
<if condition="$show['max_picsize_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[max_file_size_per_picture]</td>
<td>$limit_info[picsize_limit]</td>
</tr>
</if>
<if condition="$show['max_dim_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[max_picture_dimensions]</td>
<td><phrase 1="$limit_info[width_limit]" 2="$limit_info[height_limit]">$vbphrase[x_by_y_pixels]</phrase></td>
</tr>
</if>
</table>
<if condition="$show['max_dim_limit'] OR $show['max_picsize_limit']">
<div class="smallfont shade" style="padding:2px">$vbphrase[pictures_automatically_resized_better_manually]</div>
</if>
</div>
</fieldset>
</if>
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="uploadpictures" />
<input type="hidden" name="albumid" value="$albuminfo[albumid]" />
<input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
<input type="submit" class="button" value="$vbphrase[upload_pictures]" accesskey="s" tabindex="1" />
</div>
</td>
</tr>
</table>
</form>
</div>
$footer
</body>
</html>
To:
PHP Code:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
$usercss
<title>$vboptions[bbtitle] - $vbphrase[upload_pictures]</title>
</head>
<body>
$header
$navbar
<div id="usercss">
$errortable
<form action="album.php?do=uploadpictures&albumid=$albuminfo[albumid]" method="post" enctype="multipart/form-data">
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">
<if condition="!$usercss">
<img src="$stylevar[imgdir_misc]/tcat_tl.gif" alt="" border="0" style="position:relative; top: -7px; left: -7px; float:left;" />
<img src="$stylevar[imgdir_misc]/tcat_tr.gif" alt="" border="0" style="position:relative; top: -7px; left: 7px; float:right;" />
</if>
$vbphrase[upload_pictures]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<fieldset class="fieldset">
<legend>$vbphrase[pictures_to_upload]</legend>
<div style="padding:$stylevar[formspacer]px">$uploadbits</div>
<if condition="$show['moderation']">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[picture_moderation_enabled]
</div>
</if>
</fieldset>
<if condition="$show['limit_info']">
<fieldset class="fieldset">
<legend>$vbphrase[picture_limits]</legend>
<div style="padding:$stylevar[formspacer]px">
<table border="0" cellpadding="2" cellspacing="0">
<col style="padding-$stylevar[right]: $stylevar[cellpadding]px" />
<if condition="$show['max_pic_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[pictures_remaining]</td>
<td>$limit_info[pic_remain]</td>
</tr>
</if>
<if condition="$show['max_totalsize_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[space_remaining]</td>
<td>$limit_info[totalsize_remain]</td>
</tr>
</if>
<if condition="$show['max_picsize_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[max_file_size_per_picture]</td>
<td>$limit_info[picsize_limit]</td>
</tr>
</if>
<if condition="$show['max_dim_limit']">
<tr>
<td nowrap="nowrap">$vbphrase[max_picture_dimensions]</td>
<td><phrase 1="$limit_info[width_limit]" 2="$limit_info[height_limit]">$vbphrase[x_by_y_pixels]</phrase></td>
</tr>
</if>
</table>
<if condition="$show['max_dim_limit'] OR $show['max_picsize_limit']">
<div class="smallfont shade" style="padding:2px">$vbphrase[pictures_automatically_resized_better_manually]</div>
</if>
</div>
</fieldset>
</if>
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="uploadpictures" />
<input type="hidden" name="albumid" value="$albuminfo[albumid]" />
<input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
<input type="submit" class="button" value="$vbphrase[upload_pictures]" accesskey="s" tabindex="1" />
</div>
</td>
</tr>
</table>
</form>
</div>
$footer
</body>
</html>