Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 512 → Rev 513

/blog/edit-post.php
73,7 → 73,7
<?php
write('<input type="hidden" name="id" value="' . $id . '" />');
?>
<input type="hidden" name="csrftoken" value=""<?php echo $page->getCSRFToken($page->getLoggedInUser()->ID); ?>" />
<input type="hidden" name="csrftoken" value="<?php echo $page->getCSRFToken($page->getLoggedInUser()->ID); ?>" />
 
<tr>
<td class="bold"></td>
/_taios.php
482,7 → 482,7
 
$res = '';
for ($i = $len - 1; $i >= 0; $i--) {
$res .= $chars[rand(0, clen - 1)];
$res .= $chars[rand(0, $clen - 1)];
}
 
return $res;