diff options
author | Mario Preksavec <mario at slackware dot hr> | 2017-11-24 00:56:19 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-11-24 00:56:19 +0000 |
commit | 3df30f21d4a37c14f7373e3ae8652472e1930756 (patch) | |
tree | 495826e790df118322b38a3f05b102a59bfe3b7e /network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch | |
parent | d9af86bf24bd35747c10bd36bf459e7f80c1d772 (diff) | |
download | slackbuilds-3df30f21d4a37c14f7373e3ae8652472e1930756.tar.gz |
network/iptv-analyzer: Added (IPTV MPEG2 Transport Stream Analyzer).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch')
-rw-r--r-- | network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch b/network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch new file mode 100644 index 0000000000..4a84020a1e --- /dev/null +++ b/network/iptv-analyzer/patches/e5d7c0b90cfe3218d67b56e122140456206f6a65.patch @@ -0,0 +1,41 @@ +From e5d7c0b90cfe3218d67b56e122140456206f6a65 Mon Sep 17 00:00:00 2001 +From: Hoai-Thu Vuong <thuvh87@gmail.com> +Date: Tue, 12 Jan 2016 17:30:45 +0700 +Subject: [PATCH] using echo and tag php in code + +--- + webfrontend/www/design.inc.php | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/webfrontend/www/design.inc.php b/webfrontend/www/design.inc.php +index 174e04a..9fcd7b0 100644 +--- a/webfrontend/www/design.inc.php ++++ b/webfrontend/www/design.inc.php +@@ -29,12 +29,12 @@ function doHeader($title="", $options=FALSE) { + <meta name="description" content="tvprobe webfrontend" /> + <meta name="publisher" content="ComX Networks A/S" /> + +- <link rel="stylesheet" type="text/css" href="<?=$incdir?>css/motorola.css"> ++ <link rel="stylesheet" type="text/css" href="<?php echo $incdir; ?>css/motorola.css"> + <?php + if ($include_javascript == TRUE) { + ?> + <script +- src="<?=$incdir?>functions.js" type="text/javascript" language='javascript'> ++ src="<?php echo $incdir; ?>functions.js" type="text/javascript" language='javascript'> + </script> + <?php + } +@@ -44,10 +44,10 @@ function doHeader($title="", $options=FALSE) { + ?> + <!--Epoch's styles--> + <link rel="stylesheet" type="text/css" +- href="<?=$incdir?>js/epoch_v202_en/epoch_styles.css" /> ++ href="<?php echo $incdir; ?>js/epoch_v202_en/epoch_styles.css" /> + + <!--Epoch's Code--> +- <script type="text/javascript" src="<?=$incdir?>js/epoch_v202_en/epoch_classes.js"> ++ <script type="text/javascript" src="<?php echo $incdir; ?>js/epoch_v202_en/epoch_classes.js"> + </script> + + <script type="text/javascript"> |