diff --git a/system/Helpers/html_helper.php b/system/Helpers/html_helper.php
index aa8ae6c9434a..fb5fbc213170 100755
--- a/system/Helpers/html_helper.php
+++ b/system/Helpers/html_helper.php
@@ -329,400 +329,400 @@ function link_tag($href = '', string $rel = 'stylesheet', string $type = 'text/c
return $link . "/>";
}
-
+}
// ------------------------------------------------------------------------
- if ( ! function_exists('video'))
- {
-
- /**
- * Video
- *
- * Geneartes a video element to embed videos. The video element can
- * contain one or more video sources
- *
- * @param mixed $src Either a source string or an array of sources
- * @param string $unsupportedMessage The message to display
- * if the media tag is not supported by the browser
- * @param string $attributes HTML attributes
- * @param array $tracks
- * @param bool $indexPage
- * @return string
- *
- */
- function video($src, string $unsupportedMessage = '', string $attributes = '', array $tracks = [], bool $indexPage = false): string
- {
- if (is_array($src))
- {
- return _media('video', $src, $unsupportedMessage, $attributes, $tracks);
- }
+if ( ! function_exists('video'))
+{
- $video = '