diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2008-11-23 13:21:15 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2008-11-23 13:21:15 +0000 |
commit | d31b67d037401c1143eb92d2eeac633d95f14435 (patch) | |
tree | f7871bf0fb0e775918f896dc1c91125463a58e43 /src/options | |
parent | 45ab6746206b7fcdd93ae5d51f6963c9678cc6a5 (diff) | |
download | zetacomponents-graph-d31b67d037401c1143eb92d2eeac633d95f14435.zip zetacomponents-graph-d31b67d037401c1143eb92d2eeac633d95f14435.tar.gz |
- Removed unnecessary realpath() calls, which do not work with paths using
stream wrappers.
Diffstat (limited to 'src/options')
-rw-r--r-- | src/options/font.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options/font.php b/src/options/font.php index 6d13eb0..889e11e 100644 --- a/src/options/font.php +++ b/src/options/font.php @@ -228,7 +228,7 @@ class ezcGraphFontOptions extends ezcBaseOptions case 'path': if ( is_file( $propertyValue ) && is_readable( $propertyValue ) ) { - $this->properties['path'] = realpath( $propertyValue ); + $this->properties['path'] = $propertyValue; $parts = pathinfo( $this->properties['path'] ); switch ( strtolower( $parts['extension'] ) ) { |