Changeset 49186
- Timestamp:
- 10/18/2020 06:27:38 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pomo/po.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/po.php
r49184 r49186 213 213 * Builds a string from the entry for inclusion in PO file 214 214 * 215 * @param Translation_Entry $entry the entry to convert to po string (passed by reference).215 * @param Translation_Entry $entry the entry to convert to po string. 216 216 * @return string|false PO-style formatted string for the entry or 217 217 * false if the entry is empty 218 218 */ 219 public static function export_entry( &$entry ) {219 public static function export_entry( $entry ) { 220 220 if ( null === $entry->singular || '' === $entry->singular ) { 221 221 return false;
Note: See TracChangeset
for help on using the changeset viewer.