Changeset 19687 for trunk/wp-admin/theme-editor.php
- Timestamp:
- 01/05/2012 08:50:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/theme-editor.php
r19528 r19687 87 87 //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable 88 88 $f = fopen($file, 'w+'); 89 if ($f !== FALSE) {89 if ($f !== false) { 90 90 fwrite($f, $newcontent); 91 91 fclose($f);
Note: See TracChangeset
for help on using the changeset viewer.