News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

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