diff options
author | Michael Klier <chi@chimeric.de> | 2008-03-02 18:51:05 +0100 |
---|---|---|
committer | Michael Klier <chi@chimeric.de> | 2008-03-02 18:51:05 +0100 |
commit | fbf2d7bca4305832a6021fa3452c56c89104f3a7 (patch) | |
tree | c25cc2d1751555bd95f9ce39c390a7e61c101898 /lib/exe/xmlrpc.php | |
parent | dd6c671b9d206cd89b823d9b6bcfd9c38aa6fc36 (diff) | |
download | rpg-fbf2d7bca4305832a6021fa3452c56c89104f3a7.tar.gz rpg-fbf2d7bca4305832a6021fa3452c56c89104f3a7.tar.bz2 |
XMLRPC: removed useless test for missing text in putPage()
darcs-hash:20080302175105-23886-8f67f9bdfdf69e8cee1f58f60984b53fb8a27ac9.gz
Diffstat (limited to 'lib/exe/xmlrpc.php')
-rw-r--r-- | lib/exe/xmlrpc.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/exe/xmlrpc.php b/lib/exe/xmlrpc.php index e43394e50..36205fbf8 100644 --- a/lib/exe/xmlrpc.php +++ b/lib/exe/xmlrpc.php @@ -199,9 +199,6 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer { if(checklock($id)) return new IXR_Error(1, 'The page is currently locked'); - if(empty($TEXT)) - return new IXR_Error(1, 'No text supplied'); - //spam check if(checkwordblock()) return new IXR_Error(1, 'Positive wordblock check'); |