1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

elseif -> else if

git-svn-id: file:///svn/phpbb/trunk@6765 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-12-15 02:38:14 +00:00
parent 837fcd1295
commit 950d67d60e
5 changed files with 10 additions and 10 deletions

View File

@@ -1178,7 +1178,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
}
// else if we are showing raw css or the user submitted data from the simple view
// then we need to turn the given information into raw css
elseif (!$css_data && !$add_custom)
else if (!$css_data && !$add_custom)
{
foreach ($match_elements as $type => $match_ary)
{
@@ -1245,7 +1245,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
}
}
// make sure we have $show_css set, so we can link to the show_css page if we need to
elseif (!$hide_css)
else if (!$hide_css)
{
$show_css = true;
}