mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-08 17:26:43 +02:00
feat: set min PHP version to 8.4
update CI4 to 4.6.0 + use codeigniter-vite and vite-plugin-codeigniter to load assets
This commit is contained in:
parent
0e4e301b81
commit
94cea0ce91
397 changed files with 4693 additions and 4302 deletions
|
|
@ -125,7 +125,7 @@ class VideoClipsController extends BaseController
|
|||
|
||||
$this->setHtmlHead(lang('VideoClip.form.title'));
|
||||
|
||||
if (in_array(false, $checks, true)) {
|
||||
if (array_any($checks, fn (bool $value): bool => ! $value)) {
|
||||
$data['checks'] = $checks;
|
||||
return view('episode/video_clips_requirements', $data);
|
||||
}
|
||||
|
|
@ -188,7 +188,7 @@ class VideoClipsController extends BaseController
|
|||
|
||||
return redirect()->route('video-clips-list', [$episode->podcast_id, $episode->id])->with(
|
||||
'message',
|
||||
lang('VideoClip.messages.addToQueueSuccess')
|
||||
lang('VideoClip.messages.addToQueueSuccess'),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue