Make WordPress Core

Opened 10 years ago

Closed 4 years ago

#39694 closed defect (bug) (worksforme)

wp_check_filetype() returns false for html files

Reported by: onnimonni Owned by:
Priority: normal Milestone:
Component: Media Version: 4.7.1
Severity: normal Keywords:
Cc: Focuses:

Description

Is this intentional behaviour?

Running:

<?php
var_dump( wp_check_filetype( 'example.html' ) );

outputs:

array(2) {
  'ext' =>
  bool(false)
  'type' =>
  bool(false)
}

WordPress and PHP versions:

$ wp core version
4.7.1
$ php --version
PHP 7.0.15-1~dotdeb+8.1 (cli) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
    with Zend OPcache v7.0.15-1~dotdeb+8.1, Copyright (c) 1999-2017, by Zend Technologies
    with Xdebug v2.5.0, Copyright (c) 2002-2016, by Derick Rethans

Change History (4)

#1 @SergeyBiryukov
10 years ago

  • Component GeneralMedia

#2 @joemcgill
10 years ago

Hi @onnimonni. This is probably related to #39550.

This ticket was mentioned in Slack in #core-media by joedolson. View the logs.


4 years ago

#4 @antpb
4 years ago

  • Milestone Awaiting Review
  • Resolutionworksforme
  • Status newclosed

Thanks to @joedolson for testing that this is no longer valid.

From Joe:
Yes, this is fixed. Now returns correct text/html info

Note: See TracTickets for help on using tickets.