source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/plugins/publish/README.txt@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 326 bytes
Line 
1You can allow approvers to approve with no changes by editing
2inc/common.php:933 to remove:
3 // ignore if no changes were made
4 if($text == rawWiki($id,'')){
5 return;
6 }
7
8Or, you can change it to:
9 global $_POST;
10 // ignore if no changes were made
11 if(!$POST['approved'] && $text == rawWiki($id,'')){
12 return;
13 }
Note: See TracBrowser for help on using the repository browser.