Skip to content

Instantly share code, notes, and snippets.

@ramiabraham
Created July 8, 2014 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramiabraham/8828acac3549c46af4fb to your computer and use it in GitHub Desktop.
Save ramiabraham/8828acac3549c46af4fb to your computer and use it in GitHub Desktop.
Adjusts Thesis themes to be compliant with PHP >= 5.4 in options_post.php
if (($meta_field['type']['type'] == 'checkbox') && is_array($meta_field['type']['options'])) {
to:
if ((is_array($meta_field['type'])) && ($meta_field['type']['type'] == 'checkbox') && is_array($meta_field['type']['options'])) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment