diff --git a/html/includes/functions.inc.php b/html/includes/functions.inc.php
index 7b7ea62ca5..b4ab63c709 100644
--- a/html/includes/functions.inc.php
+++ b/html/includes/functions.inc.php
@@ -181,8 +181,8 @@ function get_percentage_colours($percentage) {
}//end get_percentage_colours()
-function generate_minigraph_image($device, $start, $end, $type, $legend='no', $width=275, $height=100, $sep='&', $class='minigraph-image') {
- return '
';
+function generate_minigraph_image($device, $start, $end, $type, $legend='no', $width=275, $height=100, $sep='&', $class='minigraph-image',$absolute_size=0) {
+ return '
';
}//end generate_minigraph_image()
diff --git a/html/includes/graphs/common.inc.php b/html/includes/graphs/common.inc.php
index 9dbc97b805..ba77fb3f6f 100644
--- a/html/includes/graphs/common.inc.php
+++ b/html/includes/graphs/common.inc.php
@@ -103,3 +103,7 @@ else {
}
$rrd_options .= ' --font-render-mode normal';
+
+if (isset($_GET['absolute']) && $_GET['absolute'] == "1") {
+ $rrd_options .= ' --full-size-mode';
+}