mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
Merge branch 'ent-6353-se-pueden-crear-noticias-del-sistema-sin-añadirle-asunto' into 'develop'
requiered subject on create news See merge request artica/pandorafms!3526
This commit is contained in:
commit
0b3f9fd5bd
@ -55,7 +55,11 @@ if (isset($_POST['create'])) {
|
||||
'expire_timestamp' => $expire_timestamp,
|
||||
];
|
||||
|
||||
if ($subject === '') {
|
||||
$id_link = false;
|
||||
} else {
|
||||
$id_link = db_process_sql_insert('tnews', $values);
|
||||
}
|
||||
|
||||
ui_print_result_message(
|
||||
$id_link,
|
||||
@ -92,7 +96,11 @@ if (isset($_POST['update'])) {
|
||||
'expire_timestamp' => $expire_timestamp,
|
||||
];
|
||||
|
||||
if ($subject === '') {
|
||||
$result = false;
|
||||
} else {
|
||||
$result = db_process_sql_update('tnews', $values, ['id_news' => $id_news]);
|
||||
}
|
||||
|
||||
ui_print_result_message(
|
||||
$result,
|
||||
|
Loading…
x
Reference in New Issue
Block a user