Changeset 54315 for trunk/src/wp-includes/pomo/entry.php
- Timestamp:
- 09/26/2022 08:54:44 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/entry.php
r54133 r54315 88 88 * Generates a unique key for this entry. 89 89 * 90 * @return string|false The key or false if the entry is empty.90 * @return string|false The key or false if the entry is null. 91 91 */ 92 92 public function key() { 93 if ( null === $this->singular || '' === $this->singular) {93 if ( null === $this->singular ) { 94 94 return false; 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.