diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-12-03 14:18:15 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-12-03 14:18:15 +0100 |
commit | ccdfa6c0da3891892f92fb99a28e684bfc592569 (patch) | |
tree | f69ff9562ec2bf71580c2b4f4bb7023259cca95c /inc/common.php | |
parent | f95e691e3de814f9fd4e7afca38f3da9fd523d64 (diff) | |
download | rpg-ccdfa6c0da3891892f92fb99a28e684bfc592569.tar.gz rpg-ccdfa6c0da3891892f92fb99a28e684bfc592569.tar.bz2 |
fix for wrong include path #651
darcs-hash:20051203131815-7ad00-b45dfcae203764658deb80e0b18b9ddc0cfba37b.gz
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index 4092eb766..8fe797187 100644 --- a/inc/common.php +++ b/inc/common.php @@ -911,7 +911,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false){ if($rev){ $subject = $lang['mail_changed'].' '.$id; $text = str_replace('@OLDPAGE@',wl($id,"rev=$rev",true),$text); - require_once("inc/DifferenceEngine.php"); + require_once(DOKU_INC.'inc/DifferenceEngine.php'); $df = new Diff(split("\n",rawWiki($id,$rev)), split("\n",rawWiki($id))); $dformat = new UnifiedDiffFormatter(); |