Skip to content

Commit

Permalink
Issue #18: Remove empty theme call to prevent notices (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
indigoxela committed Oct 31, 2023
1 parent 2957e29 commit 6da9215
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion video_filter.module
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,6 @@ function template_preprocess_video_filter_dashboard(&$variables) {
// Construct page title.
$variables['head_title'] = t('Video filter dashboard');
$variables['head'] = backdrop_get_html_head();
$variables['help'] = theme('help');
$variables['language'] = $GLOBALS['language'];
$variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr';
$variables['messages'] = isset($variables['show_messages']) ? theme('status_messages') : '';
Expand Down
1 change: 0 additions & 1 deletion video_filter_dashboard.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

<body id="video_filter">
<?php if (!empty($messages)): print $messages; endif; ?>
<?php if (!empty($help)): print $help; endif; ?>
<div class="clearfix">
<?php print $form; ?>
</div>
Expand Down

0 comments on commit 6da9215

Please sign in to comment.