forum.coppermine-gallery.net

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:
Code: [Select]
$link = "<a href=\"index.php?cat={$cid}\">{$cat['details']['name']}</a>";changing this:
Code: [Select]
$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
Code: [Select]
$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  :)