Changeset 9847 for trunk/wp-admin/admin-header.php
- Timestamp:
- 11/23/2008 06:37:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r9836 r9847 40 40 } 41 41 42 if ( typeof o === 'object' ) { 43 for (var v in o) 44 o[v] = c(o[v]); 45 return o; 46 } else if ( typeof o === 'string' ) 42 if ( typeof o === 'string' ) 47 43 return c(o); 44 else if ( typeof o === 'object' ) 45 for (var v in o) { 46 if ( typeof o[v] === 'string' ) 47 o[v] = c(o[v]); 48 } 49 return o; 48 50 }; 49 51 //]]>
Note: See TracChangeset
for help on using the changeset viewer.