Merge branch 'ent-11894-editor-de-links-no-actualiza-la-pagina-al-crear-o-borrar-enlaces' into 'develop'
Ent 11894 editor de links no actualiza la pagina al crear o borrar enlaces See merge request artica/pandorafms!6373
This commit is contained in:
commit
bda55cc3a5
|
@ -54,8 +54,12 @@ if (isset($_POST['create'])) {
|
||||||
if (! $result) {
|
if (! $result) {
|
||||||
ui_print_error_message(__('There was a problem creating link'));
|
ui_print_error_message(__('There was a problem creating link'));
|
||||||
} else {
|
} else {
|
||||||
ui_print_success_message(__('Successfully created'));
|
|
||||||
$id_link = $result;
|
$id_link = $result;
|
||||||
|
ui_print_result_message(
|
||||||
|
$id_link,
|
||||||
|
__('Successfully created'),
|
||||||
|
__('Could not be created')
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,8 +115,8 @@ if ((isset($_GET['form_add'])) or (isset($_GET['form_edit']))) {
|
||||||
$link = '';
|
$link = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<table class="databox filters filter-table-adv max_floating_element_size" cellpadding="4" cellspacing="4" width="100%">';
|
|
||||||
echo '<form name="ilink" method="post" action="index.php?sec=gsetup&sec2=godmode/setup/links">';
|
echo '<form name="ilink" method="post" action="index.php?sec=gsetup&sec2=godmode/setup/links">';
|
||||||
|
echo '<table class="databox filters filter-table-adv max_floating_element_size" cellpadding="4" cellspacing="4" width="100%">';
|
||||||
if ($creation_mode == 1) {
|
if ($creation_mode == 1) {
|
||||||
echo "<input type='hidden' name='create' value='1'>";
|
echo "<input type='hidden' name='create' value='1'>";
|
||||||
} else {
|
} else {
|
||||||
|
@ -179,10 +183,10 @@ if ((isset($_GET['form_add'])) or (isset($_GET['form_edit']))) {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
echo '</form></td></tr></table>';
|
echo '</td></tr></table></form>';
|
||||||
} else {
|
} else {
|
||||||
// Main list view for Links editor
|
// Main list view for Links editor.
|
||||||
$rows = db_get_all_rows_in_table('tlink', 'name');
|
$rows = db_get_all_fields_in_table('tlink', '', '', 'name');
|
||||||
if ($rows === false) {
|
if ($rows === false) {
|
||||||
$rows = [];
|
$rows = [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue