Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -146,7 +146,7 @@ |
147 | 147 | if ( $bt[0]['class'] !== 'Maintenance' || $bt[0]['function'] !== 'shouldExecute' ) { |
148 | 148 | return false; // last call should be to this function |
149 | 149 | } |
150 | | - $includeFuncs = array( 'require_once', 'require', 'include' ); |
| 150 | + $includeFuncs = array( 'require_once', 'require', 'include', 'include_once' ); |
151 | 151 | for( $i=1; $i < $count; $i++ ) { |
152 | 152 | if ( !in_array( $bt[$i]['function'], $includeFuncs ) ) { |
153 | 153 | return false; // previous calls should all be "requires" |