PDA

View Full Version : New user - question


kirtok
06-14-2005, 04:56 PM
Hi
It seems like a pretty good script. Congrats to the programmers. I have installed it in 2 minutes, and everything works fine. I'd like to test it for a while before deciding to use it.
Here's my question:

I have created my first category, and modrewrite adds underscores instead of hyphens. Is there any way to change it to hyphens?

category-name instead of category_name ?

Thanks in advance

dcb
06-14-2005, 05:00 PM
that's only the default value. You can change the URL Title field yourself.

kirtok
06-14-2005, 05:02 PM
Is there a place in the code where I can modify? So I don't have to change each time?

Also I have tried to make my first submission, image validation does not work. I have tried several times, it says INVALID CODE. any way to fix it?

dcb
06-14-2005, 05:18 PM
/admin/dir_categs_edit.php replace line 138 with:
$data['TITLE_URL'] = preg_replace('`[^\w_-]`', '-', $data['TITLE']);

You are absolutelly right about the image validation.
I already fixed the problem and will post the patch in a few minutes on the forum.

Anonymous
06-14-2005, 05:45 PM
Thanks, awesome help.
both problems solved :)