summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/stream_wrappers.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/stream_wrappers.inc b/includes/stream_wrappers.inc
index 3c88f3d8f..9a9b06171 100644
--- a/includes/stream_wrappers.inc
+++ b/includes/stream_wrappers.inc
@@ -401,7 +401,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface
$this->handle = ($options & STREAM_REPORT_ERRORS) ? fopen($path, $mode) : @fopen($path, $mode);
if ((bool) $this->handle && $options & STREAM_USE_PATH) {
- $opened_url = $path;
+ $opened_path = $path;
}
return (bool) $this->handle;