Advertisement
Guest User

Untitled

a guest
Feb 27th, 2014
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. -----Starting with line 123-----
  2.  
  3. if ( $sitedetails && !in_array( $blog, $excluded ) ) { //if the blog exists and isn't on the exclusion list add it to array
  4. if ( $sortby == 0 ) { //proper array construction depending on sort
  5. $siteArray[$sitedetails[1]->option_value]['url'] = $sitedetails[0]->option_value;
  6. $siteArray[$sitedetails[1]->option_value]['id'] = $blog;
  7. $siteArray[$sitedetails[1]->option_value]['desc'] = $sitedetails[2]->option_value;
  8. } else {
  9. $siteArray[$blog]['url'] = $sitedetails[0]->option_value;
  10. $siteArray[$blog]['title'] = $sitedetails[1]->option_value;
  11. $siteArray[$blog]['desc'] = $sitedetails[2]->option_value;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement