|
From: Bart v. B. <ba...@us...> - 2001-12-22 11:17:13
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv24663
Modified Files:
functions.php
Log Message:
Fixed small problem with translation of imgs
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.97
retrieving revision 1.98
diff -C2 -r1.97 -r1.98
*** functions.php 2001/12/21 16:00:41 1.97
--- functions.php 2001/12/22 11:17:09 1.98
***************
*** 304,308 ****
$new_value = str_replace("_lang", "_" . $board_config['default_lang'], $value);
! $images[$key] = ( !file_exists($new_value) ) ? $new_value : str_replace("_lang", "_english", $value);
}
}
--- 304,309 ----
$new_value = str_replace("_lang", "_" . $board_config['default_lang'], $value);
! $images[$key] = ( file_exists($new_value) ) ? $new_value : str_replace("_lang", "_english", $value);
! print $new_value;
}
}
***************
*** 1202,1204 ****
}
! ?>
\ No newline at end of file
--- 1203,1205 ----
}
! ?>
|