rilwis / taxonomy-meta

Add meta values to terms, mimic custom post fields
42 stars 27 forks source link

Should use admin_enqueue_scripts() instead of wp_enqueue_scripts() #2

Closed martijnwalraven closed 12 years ago

martijnwalraven commented 12 years ago

I couldn't get the image upload to work because the thickbox script hadn't been included. It turns out check_field_upload() uses wp_enqueue_scripts() to add the required scripts, but this doesn't seem to work for admin pages. Changing it to admin_enqueue_scripts() seems to have fixed this.

rilwis commented 12 years ago

Just fixed in latest commit. Can you please check it?

martijnwalraven commented 12 years ago

Thanks, that fixed it!