----------------
  INSTALLATION
----------------

This plugin requires one hack to a core script.  Normally, plugins should *not* require any hacks.  
This hack is being considered for inclusion in the next major version of Coppermine (1.5.x).
For the 1.4.x series, you must apply the following hack in order to use the archive features.

In the file "include/functions.inc.php", look for the following three lines:

      // Meta albums
        switch($album){
        case 'lastcom': // Last comments

Directly above these three lines, add the following code block as shown (the three lines are shown for clarity):

        // MOD - begin
        $meta_album_passto = array (
                'album' => $album,
                'limit' => $limit,
                'set_caption' => $set_caption,
        );
        $meta_album_params = CPGPluginAPI::filter('meta_album', $meta_album_passto);
        if ($meta_album_params['album_name']) {
                $album_name = $meta_album_params['album_name'];
                $count = $meta_album_params['count'];
                $rowset = $meta_album_params['rowset'];
                return $rowset;
        }
        // MOD - end
  
      // Meta albums
        switch($album){
        case 'lastcom': // Last comments

Now, installation is complete.

--------------------
  USING THE PLUGIN
--------------------

Look in the docs folder for instructions on how to use this plugin.

This plugin is in beta, so please report any issues on the Coppermine forum:

