Make WordPress Core


Ignore:
Timestamp:
01/05/2012 08:50:54 PM (13 years ago)
Author:
ryan
Message:

User lowercase true, false, null instead of uppercase. Props c3mdigital, mfields. fixes #16302

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/theme-editor.php

    r19528 r19687  
    8787        //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
    8888        $f = fopen($file, 'w+');
    89         if ($f !== FALSE) {
     89        if ($f !== false) {
    9090            fwrite($f, $newcontent);
    9191            fclose($f);
Note: See TracChangeset for help on using the changeset viewer.