--- WorkflowPlugin.pm.org 2007-01-05 05:17:46.000000000 +0100 +++ WorkflowPlugin.pm 2008-01-27 02:19:20.000000000 +0100 @@ -443,6 +443,12 @@ # Always allow members of the admin group to edit - if ( $User->isAdmin() ) { - return 1; + if ( $TWiki::Plugins::VERSION >= 1.2 ) { + if ( TWiki::Func::isAnAdmin( $User ) ) { + return 1; + } + } else { + if ( $User->isAdmin() ) { + return 1; + } }