coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: suzanitta on December 06, 2006, 01:12:33 PM

Title: Removing last additions from a specific category
Post by: suzanitta on December 06, 2006, 01:12:33 PM
I would like to remove the last additions only from user galleries category. Which part of the code do I have to edit?
Title: Re: Removing last additions from a specific category
Post by: Abbas Ali on December 06, 2006, 01:22:45 PM
Edit index.php

Replace


                    case 'lastup':
                        display_thumbnails('lastup', $cat, 1, $CONFIG['thumbcols'], max(1, $matches[2]), false);
                        flush();
                        break;


with


                    case 'lastup':
                        if ($cat < FIRST_USER_CAT && $cat != 1) {
                          display_thumbnails('lastup', $cat, 1, $CONFIG['thumbcols'], max(1, $matches[2]), false);
                        }
                        flush();
                        break;
Title: Re: Removing last additions from a specific category
Post by: suzanitta on December 06, 2006, 04:28:13 PM
Thank you for your quick response  ;)