diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
commit | 6dc1997577fab2c366781fd7048144935afa0012 (patch) | |
tree | 8918d28c7ab4342f0738985e37af1dfc42d0e93a /includes/media/DjVuImage.php | |
parent | 150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff) | |
parent | fa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff) |
Merge commit 'fa89acd'
# Conflicts:
# .gitignore
# extensions/ArchInterWiki.sql
Diffstat (limited to 'includes/media/DjVuImage.php')
-rw-r--r-- | includes/media/DjVuImage.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/media/DjVuImage.php b/includes/media/DjVuImage.php index e8faa70a..dac76fad 100644 --- a/includes/media/DjVuImage.php +++ b/includes/media/DjVuImage.php @@ -123,9 +123,9 @@ class DjVuImage { } function getInfo() { - wfSuppressWarnings(); + MediaWiki\suppressWarnings(); $file = fopen( $this->mFilename, 'rb' ); - wfRestoreWarnings(); + MediaWiki\restoreWarnings(); if ( $file === false ) { wfDebug( __METHOD__ . ": missing or failed file read\n" ); @@ -150,7 +150,7 @@ class DjVuImage { wfDebug( __METHOD__ . ": not a DjVu file\n" ); } elseif ( $subtype == 'DJVU' ) { // Single-page document - $info = $this->getPageInfo( $file, $formLength ); + $info = $this->getPageInfo( $file ); } elseif ( $subtype == 'DJVM' ) { // Multi-page document $info = $this->getMultiPageInfo( $file, $formLength ); @@ -202,7 +202,7 @@ class DjVuImage { if ( $subtype == 'DJVU' ) { wfDebug( __METHOD__ . ": found first subpage\n" ); - return $this->getPageInfo( $file, $length ); + return $this->getPageInfo( $file ); } $this->skipChunk( $file, $length - 4 ); } else { @@ -216,7 +216,7 @@ class DjVuImage { return false; } - private function getPageInfo( $file, $formLength ) { + private function getPageInfo( $file ) { list( $chunk, $length ) = $this->readChunk( $file ); if ( $chunk != 'INFO' ) { wfDebug( __METHOD__ . ": expected INFO chunk, got '$chunk'\n" ); |