It's great that the SVN revision number is updated each night but could it be removed from functions.php? Possibly to a file of its own. The revision log for functions.php is now littered with these relatively trivial changes making it harder to see which are real code modifications.
Comments
`
function version() {
$fp = fopen($zp_root . '/zp-core/version', 'rb');
$version = fpassthru($fp);
fclose($fp);
return $version;
}
`
With '/zp-core/version' containing text like "1.1.4 [1150]".
And I thought my use of sed was awesome ;-)