I posted this in the wrong forum so i'm posting it again.
Sorry for the duplicate. But i think ive sorted it.
Hi, is there away that i can prefix
my attachements with a name as well as the
incremntal number?
Currently
1-mysillypic.jpg
Could this be changed too
1-ubbdevelopers-mysillypic.jpg
============================================
\scripts\filemanager.inc.php
Line 149
$FileName = "$file_id-$_FILES['userfile']['name']}";
$FileName = preg_replace("/ +/","",$FileName);
Change to
$FileName = "$file_id-yourprefix-{$_FILES['userfile']['name']}";
$FileName = preg_replace("/ +/","",$FileName);
All ive added is
yourprefix-I have tested it on my test forum and works well.
I can upload, and view the images no problem.
And now i have a prefix with my site name.
Note: i havent included in my prefix any "dots" (yourprefix)
so i cant tell you if that would break things.
I only dug around, i dont know if there are any knock on
effects, but its working fine.
Enjoy
