]> git.pld-linux.org Git - packages/cacti.git/blame - short_open_tag_parse_error.patch
- new
[packages/cacti.git] / short_open_tag_parse_error.patch
CommitLineData
4d9b2a21
AM
1diff -ruBbd cacti-0.8.6g/graph_view.php cacti-0.8.6g-patched/graph_view.php
2--- cacti-0.8.6g/graph_view.php 2005-09-08 19:56:25.000000000 -0400
3+++ cacti-0.8.6g-patched/graph_view.php 2005-09-13 22:14:01.000000000 -0400
4@@ -374,7 +374,7 @@
5
6 <tr bgcolor="<?php print $colors["panel"];?>">
7 <form name="form_graph_id" method="POST" onSubmit='form_graph(document.graphs,document.form_graph_id)'>
8- <input type='hidden' name='graph_list' value='<? print $graph_list_text; ?>'>
9+ <input type='hidden' name='graph_list' value='<?php print $graph_list_text; ?>'>
10 <input type='hidden' name='graph_add' value=''>
11 <input type='hidden' name='graph_remove' value=''>
12 <td>
13@@ -564,10 +564,10 @@
14 <input type='hidden' name='page' value='1'>
15 <input type='hidden' name='style' value='selective'>
16 <input type='hidden' name='action' value='preview'>
17- <input type='hidden' name='graph_list' value='<? print $graph_list_text; ?>'>
18+ <input type='hidden' name='graph_list' value='<?php print $graph_list_text; ?>'>
19 <input type='hidden' name='graph_add' value=''>
20 <input type='hidden' name='graph_remove' value=''>
21- </form><?;
22+ </form><?php
23
24 break;
25 }
26diff -ruBbd cacti-0.8.6g/include/html/inc_graph_view_filter_table.php cacti-0.8.6g-patched/include/html/inc_graph_view_filter_table.php
27--- cacti-0.8.6g/include/html/inc_graph_view_filter_table.php 2005-09-08 19:56:24.000000000 -0400
28+++ cacti-0.8.6g-patched/include/html/inc_graph_view_filter_table.php 2005-09-13 22:14:25.000000000 -0400
29@@ -1,4 +1,4 @@
30- <? if (empty($_REQUEST["host_id"])) { $_REQUEST["host_id"] = 0; }
31+ <?php if (empty($_REQUEST["host_id"])) { $_REQUEST["host_id"] = 0; }
32 if (empty($_REQUEST["filter"])) { $_REQUEST["filter"] = ""; } ?>
33 <tr bgcolor="<?php print $colors["panel"];?>">
34 <form name="form_graph_id" method="post">
This page took 0.035522 seconds and 4 git commands to generate.