
01-27-2011, 07:09 PM
|
|
|
Join Date: Sep 2003
Posts: 934
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by BirdOPrey5
You could replace the old function with mine, or you could keep the old function and just add my function to the code.
As for the "call to the function" it's the line directly under the comment
//Get File Index
Replace the line:
PHP Code:
$filename = iei_get_file_index($path, $extension);
With
PHP Code:
$filename = iei_get_file_index_name($path, $extension, $value);
Or better yet just comment out the first line and add the other one below it so you have the original code if you ever want to go back:
PHP Code:
//$filename = iei_get_file_index($path, $extension);
$filename = iei_get_file_index_name($path, $extension, $value);
|
Working great, thank you!
|