coppermine-gallery.com/forum

Support => cpg1.5.x Support => cpg1.5 miscellaneous => Topic started by: serg5777 on June 30, 2012, 03:45:23 PM

Title: Change the URL category
Post by: serg5777 on June 30, 2012, 03:45:23 PM
Help please to change. The file index.php:
$link = "<a href=\"index.php?cat={$cid}\">{$cat['details']['name']}</a>";
changing this:
$link = "<a href=\"cat={$cid}\">{$cat['details']['name']}</a>";
But the URL stops working. What should still change the code? Thank you :)
Title: Re: Change the URL category
Post by: ΑndrĂ© on July 02, 2012, 10:31:55 AM
Without having a clue what you're doing, try
$link = "<a href=\"?cat={$cid}\">{$cat['details']['name']}</a>";
Title: Re: Change the URL category
Post by: serg5777 on July 02, 2012, 08:14:24 PM
Thank you  :)