|
|
| Author |
Message |
next2you
Joined: 01 Feb 2008 Posts: 7
|
Posted: Thu Feb 07, 2008 3:05 am Post subject: [SOLVED] Inclusion error in trunk |
|
|
Hi,
just updated my local copy to revision 4475. I got an error in the graphs_view.php section.
The include was wrong, here is the patch:
| Code: |
Index: html_tree.php
===================================================================
--- html_tree.php (revision 4475)
+++ html_tree.php (working copy)
@@ -641,7 +641,7 @@
/* include time span selector */
if (read_graph_config_option("timespan_sel") == "on") {
html_graph_start_box(3, false);
- include($config["include_path"] . "html/inc_timespan_selector.php");
+ include($config["include_path"] . "/html/inc_timespan_selector.php");
html_graph_end_box();
}
|
|
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 11725 Location: Muenster, Germany
|
Posted: Thu Feb 07, 2008 4:18 pm Post subject: |
|
|
Thnak you, that was my fault. Will correct tomorrow
Reinhard |
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 11725 Location: Muenster, Germany
|
Posted: Fri Feb 08, 2008 12:30 pm Post subject: |
|
|
Fixed in SVN. Thanks for the pointers
Reinhard |
|
| Back to top |
|
 |
|