diff options
author | Adrian Lang <dokuwiki@adrianlang.de> | 2010-12-08 08:51:32 +0100 |
---|---|---|
committer | Adrian Lang <dokuwiki@adrianlang.de> | 2010-12-08 17:43:28 +0100 |
commit | 3733161e2de6b5a7092884f4e39ce8c846ae8f8c (patch) | |
tree | c57a905dabeab32fea9f98df1438d9399917f0e6 | |
parent | b5a0be432b07d64035ca80b606debad9ccdbd664 (diff) | |
download | rpg-3733161e2de6b5a7092884f4e39ce8c846ae8f8c.tar.gz rpg-3733161e2de6b5a7092884f4e39ce8c846ae8f8c.tar.bz2 |
Add missing variable declaration
-rw-r--r-- | inc/html.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/html.php b/inc/html.php index 9d3c92707..1e02ac9ce 100644 --- a/inc/html.php +++ b/inc/html.php @@ -888,6 +888,9 @@ function html_diff($text='',$intro=true){ $rev2 = (int) $_REQUEST['rev2']; } + $r_minor = ''; + $l_minor = ''; + if($text){ // compare text to the most current revision $l_rev = ''; $l_text = rawWiki($ID,''); |