+ Replaced name function from array_push_associative to array_push_assoc

+ Rewrited posting.php

git-svn-id: https://svn.pioder.pl/uf-svn/uF@32 72ec579a-5ced-4fa4-82f3-afba5d98df2f
This commit is contained in:
pioder
2009-06-01 18:46:17 +00:00
parent 7669786f46
commit 93e5cae6f0
20 changed files with 238 additions and 308 deletions

View File

@@ -226,7 +226,7 @@ if ((isset($_POST['keywords'])) || ($_GET['content']=='lastposts') || ($_GET['co
'ltopicname'=>$lng['ltopicname'],
'lang'=> $default_lang
);
$skin = array_push_associative($skin,GenerateHeader($window_title,$navigator_title));
$skin = array_push_assoc($skin,GenerateHeader($window_title,$navigator_title));
include('./skins/'.$default_skin.'/overall_header.tpl');
include('./skins/'.$default_skin.'/forum_body.tpl');
$query = DataBase::sql_query($sql,GENERAL, 'Could not obtain topics information');
@@ -283,7 +283,7 @@ else
);
$window_title = $lng['lsearch'];
$navigator_title = '</a>&gt; <a href="'.$_SERVER['REQUEST_URI'].'" class="navigator">'.$lng['lsearch'];
$skin = array_push_associative($skin,GenerateHeader($window_title,$navigator_title));
$skin = array_push_assoc($skin,GenerateHeader($window_title,$navigator_title));
include('./skins/'.$default_skin.'/overall_header.tpl');
include('./skins/'.$default_skin.'/search_body.tpl');
}