[go: nahoru, domu]

Skip to content

samwilson/dokuwiki-plugin-publish

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

You can allow approvers to approve with no changes by editing
inc/common.php:933 to remove:
  // ignore if no changes were made
  if($text == rawWiki($id,'')){
    return;
  }

Or, you can change it to:
  global $_POST;
  // ignore if no changes were made
  if(!$POST['approved'] && $text == rawWiki($id,'')){
    return;
  }

About

Some improvements on the original plugin by Jarrod Lowe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • PHP 97.3%
  • JavaScript 2.7%