On Tue, 2005-01-25 at 12:16 -0800, Bill Shupp wrote:
> Ron Guerin wrote:
>
> The more I think about this, the more it seems like it might not be a
> bad idea for very large sites. However, it should be an option set in
> config.php. Can you easily alter it to work that way?
How about this?
config.php
----------
define(EXTRA_UPDATE, TRUE);
function update_extra_processing() {
// user code goes here or else this does nothing
}
records.php
-----------
if(EXTRA_UPDATE) { update_extra_processing; } // in appropriate places
If this is what you had in mind, I can send you a patch like that.
- Ron