Changeset 4165 for trunk/wp-includes/functions.php
- Timestamp:
- 09/05/2006 06:52:24 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r4144 r4165 948 948 $ifp = @ fopen($new_file, 'wb'); 949 949 if ( ! $ifp ) 950 return array('error' => "Could not write file $new_file.");950 return array('error' => sprintf(__('Could not write file %s'), $new_file)); 951 951 952 952 $success = @ fwrite($ifp, $bits); … … 1092 1092 } 1093 1093 1094 return __('Are you sure you want to do this ');1094 return __('Are you sure you want to do this?'); 1095 1095 } 1096 1096
Note: See TracChangeset
for help on using the changeset viewer.