mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-11 07:41:17 +02:00
Admin mobile block: fix inline style beating media query
This commit is contained in:
@@ -196,9 +196,9 @@ class ThesisEditController
|
||||
'title' => trim($post['titre'] ?? ''),
|
||||
'subtitle' => trim($post['subtitle'] ?? ''),
|
||||
'year' => intval($post['année'] ?? 0),
|
||||
'orientation_id' => intval($post['orientation'] ?? 0),
|
||||
'ap_program_id' => intval($post['ap'] ?? 0),
|
||||
'finality_id' => intval($post['finality'] ?? 0),
|
||||
'orientation_id' => ($v = intval($post['orientation'] ?? 0)) > 0 ? $v : null,
|
||||
'ap_program_id' => ($v = intval($post['ap'] ?? 0)) > 0 ? $v : null,
|
||||
'finality_id' => ($v = intval($post['finality'] ?? 0)) > 0 ? $v : null,
|
||||
'synopsis' => trim($post['synopsis'] ?? ''),
|
||||
'context_note' => trim($post['context_note'] ?? ''),
|
||||
'baiu_link' => trim($post['lien'] ?? ''),
|
||||
|
||||
Reference in New Issue
Block a user