OneFileCMS
OneFileCMS copied to clipboard
milli -vs- micro
This is just minor technical issue. In the footer is the line: "Rendered in 12345 milliseconds." However, It is displaying values obtained from getmicrotime() (*1000000), which are microseconds. milli = 1/1000 micro = 1/1000000.
If milliseconds are desired for display, the multiplier in the code needs changed from 1000000 to 1000.
However, if microseconds are desired, then just the wording needs changed. ie: milliseconds to microseconds.