1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-27 16:20:13 +02:00

Notice removal

This commit is contained in:
e107steved
2010-11-01 22:10:42 +00:00
parent 9f298c46d1
commit 5b9016c69f
6 changed files with 7 additions and 5 deletions

View File

@@ -239,6 +239,7 @@ class bb_youtube extends e_bb_base
}
}
$url = $url.'&hl='.$hl;
$color = array();
if(isset($params['color1'])) $color[1] = $params['color1'];
if(isset($params['color2'])) $color[2] = $params['color2'];
foreach ($color as $key => $value) {

View File

@@ -519,7 +519,7 @@ function nextprev_shortcode($parm = '')
$link = str_replace('[FROM]', $newstart, $url);
}
$c = $i-1 + $index_add;
$title = ($pagetitle[$c]) ? $pagetitle[$c] : $i;
$title = (isset($pagetitle[$c]) && $pagetitle[$c]) ? $pagetitle[$c] : $i;
$dropdown .= "<option value='{$link}' {$sel}>{$title}</option>\n";
}
$dropdown .= '</select>';