summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorBen Coburn <btcoburn@silicodon.net>2006-07-10 13:46:55 +0200
committerBen Coburn <btcoburn@silicodon.net>2006-07-10 13:46:55 +0200
commitd98d4540790616b0dc0e1f613e4c217d24038a97 (patch)
treee02577576fade770c991feef98e84d1bef870e67 /lib/exe
parent039bebbab7964017afd2e53f791f9be9a1620da7 (diff)
downloadrpg-d98d4540790616b0dc0e1f613e4c217d24038a97.tar.gz
rpg-d98d4540790616b0dc0e1f613e4c217d24038a97.tar.bz2
fixing undefined variables
Fixing undefined variable notices and sometimes the underlying error that produced them. darcs-hash:20060710114655-05dcb-073948171847f1f43f153e96c8382abd421da36a.gz
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/ajax.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/ajax.php b/lib/exe/ajax.php
index 5ae6f4df8..0100f3130 100644
--- a/lib/exe/ajax.php
+++ b/lib/exe/ajax.php
@@ -80,7 +80,7 @@ function ajax_lock(){
$client = $_SERVER['REMOTE_USER'];
if(!$client) $client = clientIP(true);
- $draft = array('id' => $ID,
+ $draft = array('id' => $id,
'prefix' => $_POST['prefix'],
'text' => $_POST['wikitext'],
'suffix' => $_POST['suffix'],