Skip to content

Commit

Permalink
fix: config misplaced ui
Browse files Browse the repository at this point in the history
  • Loading branch information
ferishili committed Aug 23, 2023
1 parent 614ba21 commit 63f88f9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions classes/Conf/class.xoctConfFormGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -579,15 +579,17 @@ protected function initSecuritySection()
);
$cb->addSubItem($cb_sub);

$cb_sub = new ilCheckboxInputGUI(
$this->parent_gui->txt(PluginConfig::F_SIGN_PLAYER_LINKS_MP4),
PluginConfig::F_SIGN_PLAYER_LINKS_MP4
);
$cb->addSubItem($cb_sub);

$cb = new ilCheckboxInputGUI(
$this->parent_gui->txt(PluginConfig::F_SIGN_DOWNLOAD_LINKS),
PluginConfig::F_SIGN_DOWNLOAD_LINKS
);
$cb->setInfo($this->parent_gui->txt(PluginConfig::F_SIGN_DOWNLOAD_LINKS . '_info'));

$cb_sub = new ilCheckboxInputGUI($this->parent_gui->txt(PluginConfig::F_SIGN_PLAYER_LINKS_MP4), PluginConfig::F_SIGN_PLAYER_LINKS_MP4);
$cb->addSubItem($cb_sub);

$this->addItem($cb);

$cb_sub = new ilNumberInputGUI(
Expand Down

0 comments on commit 63f88f9

Please sign in to comment.