Changes between Initial Version and Version 1 of Ticket #30501, comment 32
- Timestamp:
- 04/21/2015 02:32:41 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30501, comment 32
initial v1 1 1 please, tell the world (all plugins developers, in a big RED NOTICE, that they should disable flushing on every page load... 2 2 they'd better to use smth like this: 3 if (get_option("my_checkpoint_12345")) { 3 4 {{{ 5 6 if (get_option($postype . "_checkpoint_12345")) { 4 7 ....flush... 5 ....delete_option( "my_checkpoint_12345");........8 ....delete_option($postype . "_checkpoint_12345");........ 6 9 } 10 }}}