Changeset 28513
- Timestamp:
- 05/19/2014 05:52:24 AM (11 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r27794 r28513 19 19 protected $image = false; // GD Resource 20 20 21 function __destruct() {21 public function __destruct() { 22 22 if ( $this->image ) { 23 23 // we don't need the original in memory anymore -
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r27794 r28513 19 19 protected $image = null; // Imagick Object 20 20 21 function __destruct() {21 public function __destruct() { 22 22 if ( $this->image instanceof Imagick ) { 23 23 // we don't need the original in memory anymore
Note: See TracChangeset
for help on using the changeset viewer.