diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-05-10 07:16:11 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-05-10 07:16:11 +0000 |
commit | bd52f8f8433a944b50d79c6d2d4c20cd982c4620 (patch) | |
tree | d3f3b4a24fd9f826523a3942a6802db44c90090a /src/interfaces | |
parent | cabd4817dc80cca8ddeb93b40e0cd18b6b3768de (diff) | |
download | zetacomponents-graph-bd52f8f8433a944b50d79c6d2d4c20cd982c4620.zip zetacomponents-graph-bd52f8f8433a944b50d79c6d2d4c20cd982c4620.tar.gz |
- Fixed issue #10759: Unset implementation broken in array access in datasets
and dataset properties
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/dataset_property.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/dataset_property.php b/src/interfaces/dataset_property.php index bfff3e6..0550f85 100644 --- a/src/interfaces/dataset_property.php +++ b/src/interfaces/dataset_property.php @@ -159,7 +159,7 @@ abstract class ezcGraphDataSetProperty implements ArrayAccess */ final public function offsetUnset( $key ) { - if ( isset( $this->dataset[$value] ) ) + if ( isset( $this->dataset[$key] ) ) { unset( $this->dataValue[$key] ); } |