summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php
index b44255c34..8cfe4eea8 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -392,7 +392,7 @@ function rawWikiSlices($range,$id,$rev=''){
list($from,$to) = split('-',$range,2);
$text = io_readFile(wikiFN($id,$rev));
if(!$from) $from = 0;
- if(!$to) $to = strlen($text);
+ if(!$to) $to = strlen($text)+1;
$slices[0] = substr($text,0,$from-1);
$slices[1] = substr($text,$from-1,$to-$from);