Skip to content

Commit

Permalink
Merge branch 'release/1.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Aug 14, 2016
2 parents 1232eca + 7c42541 commit 7843b30
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.1.3
## 08/14/2016

1. [](#bugfix)
* Fix for lightbox media function throwing error [#981](https://github.com/getgrav/grav/issues/981)

# v1.1.2
## 08/10/2016

Expand Down
2 changes: 1 addition & 1 deletion system/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.1.2');
define('GRAV_VERSION', '1.1.3');
define('GRAV_TESTING', false);
define('DS', '/');
define('GRAV_PHP_MIN', '5.5.9');
Expand Down
5 changes: 3 additions & 2 deletions system/src/Grav/Common/Page/Medium/ThumbnailImageMedium.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@ public function parsedownElement($title = null, $alt = null, $class = null, $id
* @param string $title
* @param string $alt
* @param string $class
* @param string $id
* @param bool $reset
* @return string
*/
public function html($title = null, $alt = null, $class = null, $reset = true)
public function html($title = null, $alt = null, $class = null, $id = null, $reset = true)
{
return $this->bubble('html', [$title, $alt, $class, $reset]);
return $this->bubble('html', [$title, $alt, $class, $id, $reset]);
}

/**
Expand Down

0 comments on commit 7843b30

Please sign in to comment.