29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-17 09:35:35 +00:00

Fixed artf1196 : undefined constant categoryid

git-svn-id: http://joomlacode.org/svn/joomla/development/trunk@239 6f6e1ebd-4c2b-0410-823f-f34bde69bce9
This commit is contained in:
Emir Sakic 2005-09-25 20:41:45 +00:00
parent 0d1fb93ddc
commit 25e10415a0
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ Legend:
25-Sep-2005 Emir Sakic
# Fixed artf1185 : globals.php-off breaks pathway
# Fixed artf1196 : undefined constant categoryid
22-Sep-2005 Rey Gigataras
# Fixed artf1175 : Create catagory with selection of Section

View File

@ -98,7 +98,7 @@ class content_blog_category {
$catids = mosGetParam( $_POST, 'catid', array() );
$catid = implode( ',', $catids );
$params[categoryid] = $catid;
$params['categoryid'] = $catid;
if (is_array( $params )) {
$txt = array();
foreach ($params as $k=>$v) {