r853
BACKEND
1. undefined constant FLEXI_ADD_LABEL on save field without label (Russian lang)
2. remained
www.flexicontent.org/forum/index.php?f=2...opic&start=10#p18199
3. Order by Published on fields list sorts in one direction only
4. Category are not deleted
5. remained
linkslist.php string 90
Code:
foreach ($items as $id => $item)
replace $item to $val (or $vsyaka_byaka), else object $item destroyed.
6.
Code:
Notice: Undefined offset: 2 in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 96
when filling in the wrong "Field elements" (1::Yes%% 0::No%%)
7. remained
Code:
Notice: Undefined offset: 0 in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 80
on create new item.
replace
Code:
} elseif (!$field->value[0]) {
to
Code:
} elseif (!isset($field->value[0])) {
8. Field "Related items" shows only the item is editable, and not other.
9. Published state not change on Fields List
FRONTEND
10. Field type "Date" causes error500 on frontend if field is filled, empty field error does not cause.
11.
Code:
Notice: Undefined offset: 1 in Z:\home\j17\www\libraries\joomla\html\html\email.php on line 32
if email is filled incorrect.
12.
Code:
Notice: Undefined property: stdClass::$name in Z:\home\j17\www\components\com_flexicontent\templates\default\category_items.php on line 89
replace in
Code:
<table id="flexitable" class="flexitable" width="100%" border="0" cellspacing="0" cellpadding="0" summary="<?php echo $this->category->name; ?>">
$this->category->name to $this->category->title.