I'm looking at the 2.0.1 plugin code, and I noticed that you did this:
Code:
// Right now
$timestamp = time();
My I ask why are we creating a new variable instead of using the default one defined in the initializer (./includes/init.php ~line30)?
Code:
define('TIMENOW', time());
Surely its not by a whole lot individually, but I'm sure it'd save some resources to use the already defined static value than creating a new one each time?