|
From: Paul S. O. <ps...@us...> - 2002-01-06 01:06:46
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3426/includes
Modified Files:
functions.php
Log Message:
Minor changes
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.103
retrieving revision 1.104
diff -C2 -r1.103 -r1.104
*** functions.php 2002/01/03 16:04:18 1.103
--- functions.php 2002/01/06 01:06:42 1.104
***************
*** 281,285 ****
}
! if( !file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/lang_main.".$phpEx) )
{
$board_config['default_lang'] = "english";
--- 281,285 ----
}
! if( !@file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/lang_main.".$phpEx) )
{
$board_config['default_lang'] = "english";
***************
*** 290,294 ****
if( defined("IN_ADMIN") )
{
! if( !file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/lang_admin.".$phpEx) )
{
$board_config['default_lang'] = "english";
--- 290,294 ----
if( defined("IN_ADMIN") )
{
! if( !@file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/lang_admin.".$phpEx) )
{
$board_config['default_lang'] = "english";
***************
*** 305,308 ****
--- 305,309 ----
$images[$key] = ( file_exists($new_value) ) ? $new_value : str_replace("_lang", "_english", $value);
+ // list($images_width[$key], $images_height[$key]) = getimagesize($images[$key]);
}
}
|