well that one is a little problem.
Why? because the raw data changes from make to make.
Exposure time is not manipulated..
some cameras store the data the way it is in that picture.
others, like fuji dx 10, store in following format:
[ExposureTime] => 0.010 s (1/97)
and that is also how it is displayed.
Now what would be needed is to write different code for each camera make, or use a specialized software, like pp7 does.
The way vbgallery stores the data, in raw format, and only pulls it at image display, would use too much ressources computing the data at display time.
So for the moment I dont see a possibility to fix this.
Of course if you want to play around, there is a hook at that place.
a plugin is active but has no content: its called:
Human Readable Exif Info : ppgal_showimage_exif
(when looking at the code i found a little bug...)
so before using the plugin, do following:
open showimage.php and find:
Code:
Content visible to verified customers only.
replace with:
Code:
Content visible to verified customers only.
to play around you can populate the plugin. There is a $skip=false; in it, it does nothing but you cant save an empty plugin, so thats why thats there.
So to fix your problem, open the plugin and add following code:
Code:
Content visible to verified customers only.
give it a try, but do the code change mentionned above in showimage.php, or the code in the plugin will not work.
Luc