Open ithakaben opened 7 years ago
I fixed several errors I ran into when using the plugin with WP_DEBUG set to true. I also changed several instances of !isset() || empty() to just empty() since empty() checks for everything that isset() does.
!isset() || empty()
empty()
isset()
I fixed several errors I ran into when using the plugin with WP_DEBUG set to true. I also changed several instances of
!isset() || empty()
to justempty()
sinceempty()
checks for everything thatisset()
does.