Fix GUID generation

git-svn-id: http://svn.automattic.com/wordpress/trunk@1746 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2004-10-05 07:36:50 +00:00
parent 1114fab5b6
commit 3be6575475
3 changed files with 7 additions and 7 deletions

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>