diff --git a/Documentation.html b/Documentation.html
index 5910cc3f2..e0fd26364 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -4828,6 +4828,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
AJAXifying the interface
+Martynas Mickevičius (Google Summer of Code 2010)
+
+
Barrie Leslie
- BLOBstreaming support with PBMS PHP extension
diff --git a/libraries/chart/pma_pchart_chart.php b/libraries/chart/pma_pchart_chart.php
index 278676aa5..1dac4cfb2 100644
--- a/libraries/chart/pma_pchart_chart.php
+++ b/libraries/chart/pma_pchart_chart.php
@@ -97,7 +97,7 @@ abstract class PMA_pChart_chart extends PMA_chart
$this->dataSet = new pData;
$this->chart->reportWarnings('GD');
- $this->chart->ErrorFontName = $this->getFontPath().'tahoma.ttf';
+ $this->chart->ErrorFontName = $this->getFontPath().'DejaVuSans.ttf';
// initialize colors
foreach ($this->getColors() as $key => $color) {
@@ -109,7 +109,7 @@ abstract class PMA_pChart_chart extends PMA_chart
);
}
- $this->chart->setFontProperties($this->getFontPath().'tahoma.ttf', $this->getFontSize());
+ $this->chart->setFontProperties($this->getFontPath().'DejaVuSans.ttf', $this->getFontSize());
$this->chart->setImageMap(true, 'mapid');
}