Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
flegastelois committed Dec 6, 2017
2 parents 73eeb6c + 1053472 commit e907620
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inc/entity.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static function install(Migration $migration) {

$table = self::getTable();

if (!$DB::tableExists($table)) {
if (!$DB->tableExists($table)) {
$migration->displayMessage("Installing $table");

$query = "CREATE TABLE IF NOT EXISTS `$table` (
Expand Down
2 changes: 1 addition & 1 deletion inc/ticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ static function install(Migration $migration) {

$table = self::getTable();

if (!$DB::tableExists($table)) {
if (!$DB->tableExists($table)) {
$migration->displayMessage("Installing $table");

$query = "CREATE TABLE IF NOT EXISTS `$table` (
Expand Down
2 changes: 1 addition & 1 deletion inc/type.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static function install(Migration $migration) {

$table = self::getTable();

if (!$DB::tableExists($table)) {
if (!$DB->tableExists($table)) {
$migration->displayMessage("Installing $table");

$query = "CREATE TABLE IF NOT EXISTS `$table` (
Expand Down
4 changes: 4 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
<author>TECLIB'</author>
</authors>
<versions>
<version>
<num>1.1.1</num>
<compatibility>9.2</compatibility>
</version>
<version>
<num>1.1.0</num>
<compatibility>9.2</compatibility>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
--------------------------------------------------------------------------
*/

define('PLUGIN_CREDIT_VERSION', '1.1.0');
define('PLUGIN_CREDIT_VERSION', '1.1.1');

/**
* Init hooks of the plugin.
Expand Down

0 comments on commit e907620

Please sign in to comment.