mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Fix undefined JS-derived query message on delete rule
This commit is contained in:
@@ -401,7 +401,7 @@ class frontpage
|
||||
<input class='image' type='image' src='".ADMIN_UP_ICON_PATH."' title='".FRTLAN_47."' value='".$order."' name='fp_inc".$order."' />
|
||||
<input class='image' type='image' src='".ADMIN_DOWN_ICON_PATH."' title='".FRTLAN_48."' value='".$order."' name='fp_dec".$order."' />
|
||||
<input class='image edit' type='image' title='".LAN_EDIT."' name='fp_edit_rule[".$order."]' src='".ADMIN_EDIT_ICON_PATH."' />
|
||||
<input class='image delete' type='image' title='".LAN_DELETE."' name='fp_delete_rule[".$order."]' src='".ADMIN_DELETE_ICON_PATH."' />
|
||||
<input class='image delete' type='image' title='".LAN_DELETE."' data-confirm='".FRTLAN_55."' name='fp_delete_rule[".$order."]' src='".ADMIN_DELETE_ICON_PATH."' />
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
|
@@ -38,7 +38,9 @@ define('FRTLAN_51', 'Other');
|
||||
define('FRTLAN_52', 'None');
|
||||
define('FRTLAN_53', 'User Class');
|
||||
|
||||
//0.8
|
||||
define("FRTLAN_PAGE_TITLE", 'Front Page');
|
||||
define("FRTLAN_54", 'Are you sure?');
|
||||
// 2.0
|
||||
define('FRTLAN_PAGE_TITLE', 'Front Page');
|
||||
define('FRTLAN_54', 'Are you sure?');
|
||||
define('FRTLAN_55', 'Confirm delete rule?');
|
||||
|
||||
?>
|
Reference in New Issue
Block a user