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