Fix GUID generation

git-svn-id: https://develop.svn.wordpress.org/trunk@1746 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2004-10-05 07:36:50 +00:00
parent c4b24f1bf6
commit c78d172d4f
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ $parent_file = 'edit.php';
require_once('admin-header.php');
if (empty($_GET['mode'])) $mode = 'view';
else $mode = $_GET['mode'];
else $mode = htmlspecialchars($_GET['mode']);
?>
<script type="text/javascript">
@@ -106,7 +106,7 @@ if ('view' == $mode) {
</ol>
<form action="" method="get">
<p class="submit">
<input type="hidden" name="offset" value="<?php echo $_GET['offset']+ 1; ?>" />
<input type="hidden" name="offset" value="<?php echo $_GET['offset'] + 1; ?>" />
<input type="submit" name="submit" value="<?php _e('View Next 20 Comments &raquo;');?>" />
</p>
</form>