diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-05-05 19:54:52 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-05-05 19:54:52 +0200 |
commit | 63e0b28d73c4be5de6f734211d5c09992d1b7541 (patch) | |
tree | d6473319dceeb9c1a303c1356d6e7803069dbfba | |
parent | 3e967eac778be30e35501150970fed880513c841 (diff) | |
download | rpg-63e0b28d73c4be5de6f734211d5c09992d1b7541.tar.gz rpg-63e0b28d73c4be5de6f734211d5c09992d1b7541.tar.bz2 |
fixed exception call FS#2772
-rw-r--r-- | inc/RemoteAPICore.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/RemoteAPICore.php b/inc/RemoteAPICore.php index 81b211ec8..4c940b39e 100644 --- a/inc/RemoteAPICore.php +++ b/inc/RemoteAPICore.php @@ -372,7 +372,7 @@ class RemoteAPICore { $file = wikiFN($id,$rev); $time = @filemtime($file); if(!$time){ - throw new RemoteException(10, 'The requested page does not exist', 121); + throw new RemoteException('The requested page does not exist', 121); } $info = getRevisionInfo($id, $time, 1024); |