Advertisement
Guest User

Mythcut 0.11 Long Tags

a guest
Mar 21st, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.03 KB | None | 0 0
  1. diff -ur mythcut.orig2/views/Error.php mythcut/views/Error.php
  2. --- mythcut.orig2/views/Error.php   2012-03-19 08:36:37.000000000 -0400
  3. +++ mythcut/views/Error.php 2012-03-21 16:51:26.425543084 -0400
  4. @@ -2,9 +2,9 @@
  5.     <div class="title">MythCut Fatal Error</div>
  6.  
  7.    
  8. -       <strong><?= html($viewbag->ErrorTitle) ?></strong>
  9. +       <strong><?php echo html($viewbag->ErrorTitle); ?></strong>
  10.         <pre>
  11. -       <?= $viewbag->Error ?>
  12. +       <?php echo $viewbag->Error; ?>
  13.         </pre>
  14.        
  15.         <br/>
  16. diff -ur mythcut.orig2/views/License.php mythcut/views/License.php
  17. --- mythcut.orig2/views/License.php 2012-03-19 08:36:37.000000000 -0400
  18. +++ mythcut/views/License.php   2012-03-21 16:54:36.125258324 -0400
  19. @@ -9,7 +9,7 @@
  20.         </p>
  21.        
  22.         <pre>
  23. -       <?= html($viewbag->GPLv3) ?>
  24. +       <?php echo html($viewbag->GPLv3); ?>
  25.         </pre>
  26.     </div>
  27.  
  28. diff -ur mythcut.orig2/views/_main.php mythcut/views/_main.php
  29. --- mythcut.orig2/views/_main.php   2012-03-19 08:36:37.000000000 -0400
  30. +++ mythcut/views/_main.php 2012-03-21 16:51:51.884236425 -0400
  31. @@ -23,11 +23,11 @@
  32.  
  33.     <div class="footer">
  34.         <div class="left">
  35. -           MythCut <a href="?action=showChangelog" title="Show changelog"><?= $viewbag->Version ?>
  36. +           MythCut <a href="?action=showChangelog" title="Show changelog"><?php echo $viewbag->Version; ?>
  37.             </a>
  38.         </div>
  39.         <div class="right">
  40. -           (c) 2011,2012 Mario Weilguni <a href="?action=showLicense">Licence</a>
  41. +           (c) 2011,2012 Mario Weilguni <a href="?action=showLicense">License</a>
  42.         </div>
  43.         <div class="clear" />
  44.     </div>
  45. diff -ur mythcut.orig2/views/MovieAjax.php mythcut/views/MovieAjax.php
  46. --- mythcut.orig2/views/MovieAjax.php   2012-03-19 08:36:37.000000000 -0400
  47. +++ mythcut/views/MovieAjax.php 2012-03-21 16:52:53.980488497 -0400
  48. @@ -1,6 +1,6 @@
  49.  <script type="text/javascript" src="movieAjax.js"></script>
  50.  <script type="text/javascript">
  51. -   var cutpoints = [<?= $viewbag->CutPoints ?>];
  52. +   var cutpoints = [<?php echo $viewbag->CutPoints; ?>];
  53.  </script>
  54.  
  55.  <div class="menu" style="display:none" id="actionmenu">
  56. @@ -48,16 +48,16 @@
  57.  
  58.          <p>
  59.          <strong>Information</strong><br/>
  60. -        Length: <?= $viewbag->Length ?><br/>
  61. -        Size: <?= $viewbag->Size ?><br/>
  62. -        Channel: <?= $viewbag->Channel ?><br/>
  63. -        Starttime: <?= $viewbag->Starttime ?><br/>
  64. +        Length: <?php echo $viewbag->Length; ?><br/>
  65. +        Size: <?php echo $viewbag->Size; ?><br/>
  66. +        Channel: <?php echo $viewbag->Channel; ?><br/>
  67. +        Starttime: <?php echo $viewbag->Starttime; ?><br/>
  68.          </p>
  69.      </div>
  70.  
  71.  <div class="main">
  72.     <div class="title movielist">
  73. -   <?= html($viewbag->Title) ?>
  74. +   <?php echo html($viewbag->Title); ?>
  75.         <br />
  76.  
  77.      <?php
  78. @@ -69,7 +69,7 @@
  79.      <?php } else {
  80.        echo html($viewbag->Subtitle);
  81.      } ?>
  82. -    <p class="description"><?= html($viewbag->Description) ?></p> 
  83. +    <p class="description"><?php echo html($viewbag->Description); ?></p> 
  84.      </div>
  85.    
  86.     <div class="movielist">
  87. diff -ur mythcut.orig2/views/Movie.php mythcut/views/Movie.php
  88. --- mythcut.orig2/views/Movie.php   2012-03-19 08:36:37.000000000 -0400
  89. +++ mythcut/views/Movie.php 2012-03-21 16:53:43.276894779 -0400
  90. @@ -1,5 +1,5 @@
  91.  <script type="text/javascript">
  92. -   var cutpoints = [<?= $viewbag->CutPoints ?>];
  93. +   var cutpoints = [<?php echo $viewbag->CutPoints; ?>];
  94.  </script>
  95.  
  96.  <div class="menu">
  97. @@ -48,16 +48,16 @@
  98.  
  99.          <p>
  100.          <strong>Information</strong><br/>
  101. -        Length: <?= $viewbag->Length ?><br/>
  102. -        Size: <?= $viewbag->Size ?><br/>
  103. -        Channel: <?= $viewbag->Channel ?><br/>
  104. -        Starttime: <?= $viewbag->Starttime ?><br/>
  105. +        Length: <?php echo $viewbag->Length; ?><br/>
  106. +        Size: <?php echo $viewbag->Size; ?><br/>
  107. +        Channel: <?php echo $viewbag->Channel; ?><br/>
  108. +        Starttime: <?php echo $viewbag->Starttime; ?><br/>
  109.          </p>
  110.      </div>
  111.  
  112.  <div class="main">
  113.     <div class="title movielist">
  114. -   <?= html($viewbag->Title) ?>
  115. +   <?php echo html($viewbag->Title); ?>
  116.         <br />
  117.        
  118.        
  119. @@ -72,7 +72,7 @@
  120.      <?php } else {
  121.        echo html($viewbag->Subtitle);
  122.      } ?>
  123. -    <p class="description"><?= html($viewbag->Description) ?></p>
  124. +    <p class="description"><?php echo html($viewbag->Description); ?></p>
  125.  
  126.  
  127.      </div>
  128. diff -ur mythcut.orig2/views/MovieSelectorOld.php mythcut/views/MovieSelectorOld.php
  129. --- mythcut.orig2/views/MovieSelectorOld.php    2012-03-19 08:36:37.000000000 -0400
  130. +++ mythcut/views/MovieSelectorOld.php  2012-03-21 16:54:04.154643343 -0400
  131. @@ -20,7 +20,7 @@
  132.  
  133.             <p>
  134.                 Search: <input type="text" name="search"
  135. -                   value="<?= html($viewbag->Query) ?>" /><br /> Series: <select
  136. +                   value="<?php echo html($viewbag->Query); ?>" /><br /> Series: <select
  137.                     name="series">
  138.                     <option value="">All...</option>
  139.                    
  140. @@ -36,7 +36,7 @@
  141.          }
  142.          ?>
  143.          </select><br /> <input type="checkbox" name="skip_cutted"
  144. -                   value="J" <?= $viewbag->SkipCutted ?' checked':'' ?> /> Skip movies
  145. +                   value="J" <?php echo $viewbag->SkipCutted; ?' checked':'' ?> /> Skip movies
  146.                 with existing cutlists<br /> <input type="submit" name="submit2"
  147.                     value="Filter list" />
  148.             </p>
  149. diff -ur mythcut.orig2/views/MovieSelector.php mythcut/views/MovieSelector.php
  150. --- mythcut.orig2/views/MovieSelector.php   2012-03-19 08:36:37.000000000 -0400
  151. +++ mythcut/views/MovieSelector.php 2012-03-21 16:55:02.620939250 -0400
  152. @@ -49,7 +49,7 @@
  153.  
  154.  <div class="searchbox">
  155.     <input type="text" name="search" id="search" value=""/>
  156. -   <button onClick="doSearch()">Seach</button>
  157. +   <button onClick="doSearch()">Search</button>
  158.  </div>
  159.  
  160.  <div class="pagelist right"></div>
  161. diff -ur mythcut.orig2/views/SaveCutlist.php mythcut/views/SaveCutlist.php
  162. --- mythcut.orig2/views/SaveCutlist.php 2012-03-19 08:36:37.000000000 -0400
  163. +++ mythcut/views/SaveCutlist.php   2012-03-21 16:54:14.237521914 -0400
  164. @@ -1,7 +1,7 @@
  165.  <form action="" method="get">
  166.     <div class="main">
  167.         <div class="title">
  168. -       <?= html($viewbag->Title) ?>
  169. +       <?php echo html($viewbag->Title); ?>
  170.         </div>
  171.  
  172.         <div class="movielist">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement