Update History plugin
Displaying a block with update history
original MOD by Nibbler http://coppermine-gallery.net/forum/index.php?topic=9540.0
adapted for CPG 1.4.* by deejaymoni http://coppermine-gallery.net/forum/index.php?topic=26629.0

INSTALL:
- unzip package to plugins folder and use plugin manager to install it
- after installation add updatehistory to :
    config => Album list view => The content of the main page
    

CONFIG:

- Intitialy the plugin is configured to start update history 4 days ago, you can change this setting by editing plugins/update_history/codebase.php and change the $day value on line 68.

- if you want to show this stat to admin only , open up plugins/update_history/codebase.php and replace (around line 64)
this Code:

if($matches[1] != 'updatehistory') {

with this Code:

if($matches[1] != 'updatehistory' || !GALLERY_ADMIN_MODE) {


- if you want to show this stat to Registered user only , open up plugins/update_history/codebase.php and replace (around line 64)
this Code:

if($matches[1] != 'updatehistory') {

with this Code:

if($matches[1] != 'updatehistory' || !USER_ID) {

LANGUAGE:
english.php and french.php are avaible in the package. You can translate in your language
