Merge remote branch 'origin/master'

This commit is contained in:
Pootle server
2010-10-14 12:40:30 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -4828,6 +4828,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
<li>AJAXifying the interface</li>
</ul></li>
<li>Martynas Mickevičius (Google Summer of Code 2010)
<ul>
<li>Charts</li>
</ul></li>
<li>Barrie Leslie
<ul>
<li>BLOBstreaming support with PBMS PHP extension</li>

View File

@@ -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');
}