diff options
Diffstat (limited to 'maintenance/importDump.php')
-rw-r--r-- | maintenance/importDump.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/importDump.php b/maintenance/importDump.php index c160b036..099b7895 100644 --- a/maintenance/importDump.php +++ b/maintenance/importDump.php @@ -228,7 +228,7 @@ TEXT; function importFromStdin() { $file = fopen( 'php://stdin', 'rt' ); - if( posix_isatty( $file ) ) { + if( self::posix_isatty( $file ) ) { $this->maybeHelp( true ); } return $this->importFromHandle( $file ); |