Changeset 1135499
- Timestamp:
- 04/15/2015 02:32:16 PM (11 years ago)
- Location:
- osd-exclude-from-search-results
- Files:
-
- 7 added
- 2 edited
-
tags/2.2 (added)
-
tags/2.2/includes (added)
-
tags/2.2/includes/OSDExcludeFromSearchResults.php (added)
-
tags/2.2/includes/global_settings.php (added)
-
tags/2.2/includes/installation_actions.php (added)
-
tags/2.2/osd_exclude_from_search_results.php (added)
-
tags/2.2/readme.txt (added)
-
trunk/includes/OSDExcludeFromSearchResults.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
osd-exclude-from-search-results/trunk/includes/OSDExcludeFromSearchResults.php
r1084123 r1135499 51 51 //register meta box to be able to use page as footer for ease of management 52 52 function osd_exclude_from_search_box_add() { 53 foreach($this->user_settings['show_on'] as $name => $label) { 54 add_meta_box('osd_exclude_from_search', 'OSD Exclude From Search', array($this, 'osd_efs_cb'), $name, 'side', 'default'); 55 } 53 if (isset($this->user_settings['show_on'])) { 54 foreach($this->user_settings['show_on'] as $name => $label) { 55 add_meta_box('osd_exclude_from_search', 'OSD Exclude From Search', array($this, 'osd_efs_cb'), $name, 'side', 'default'); 56 } 57 } 56 58 } 57 59 -
osd-exclude-from-search-results/trunk/readme.txt
r1084123 r1135499 68 68 == Upgrade Notice == 69 69 70 = 2.2 = 71 Bug fixes 72 70 73 = 2.1 = 71 74 Bug fixes
Note: See TracChangeset
for help on using the changeset viewer.