Index: trunk/admin/include/elements.php =================================================================== diff -u -r294 -r295 --- trunk/admin/include/elements.php (.../elements.php) (revision 294) +++ trunk/admin/include/elements.php (.../elements.php) (revision 295) @@ -595,7 +595,7 @@ { // gets correct caption for editing windows with tabs //echo "In: $item_phrase, $tab_phrase, $id"; - $is_new = ($_REQUEST['new'] == 1) ? 1 : 0; + $is_new = isset($_REQUEST['new']) && ($_REQUEST['new'] == 1) ? 1 : 0; $text = $is_new ? 'la_Text_Adding' : 'la_Text_Editing'; $text = admin_language($text).' '.admin_language($item_phrase);