Galleryadd.pl NG underscores and dashes
fgn
Joined: 2006-04-03
Posts: 2 |
Posted: Mon, 2006-04-03 06:47 |
Is this a bug? Underscores and dashes seem to be replaced with spaces. # /usr/local/bin/galleryadd.pl -G 2 -g http://host -u admin -p pass -c test-1-2_3 # /usr/local/bin/galleryadd.pl -G 2 -g http://host -u admin -p pass -l # perl -v # /usr/local/bin/galleryadd.pl |
|
Posts: 24
it is a feature you can not turn normally off
edit the script, look at line 1154.
it replaces dashes and underscores with spaces.
to exclude on of them, remove it from square brackets. to disable replacing of both, just comment the line.
ps next line converts first letters to uppercase, you might want to comment that out, too ;)
Posts: 2
That worked great, Thank You.