Change the URL category Change the URL category
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Change the URL category

Started by serg5777, June 30, 2012, 03:45:23 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

serg5777

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 :)

ΑndrĂ©

Without having a clue what you're doing, try
$link = "<a href=\"?cat={$cid}\">{$cat['details']['name']}</a>";

serg5777