scribu / wp-scb-framework

Utilities for speeding up WordPress plugin and theme development
https://github.com/scribu/wp-scb-framework/wiki
220 stars 55 forks source link

Display admin message within body #31

Closed meloniq closed 11 years ago

meloniq commented 11 years ago

In https://github.com/scribu/wp-scb-framework/commit/1a0e52efbf4601b8f89aaad59495ed94b588972e form_handler() has been repositioned, runs earlier, and admin message is displayed above opening html tag...

This pull moves admin message to correct place.

scribu commented 11 years ago

Huh, I guess that was the reason I didn't move form_handler() before.

scribu commented 11 years ago

It's interesting that even though it's outside the <html> tag, the JS from WP still moves it to the correct spot.

meloniq commented 11 years ago

Thank you for reviewing!