Skip to content

Commit

Permalink
Merge branch 'hotfix/0.18.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
garex committed Dec 3, 2015
2 parents 535fcc6 + 5ab750c commit 5019146
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
## Changelog ##


### 0.18.1 ###

Add "equals to" button into formula comparisions

* Improve external addons intergation


### 0.18 ###

Really-multisite, menu for non-admins and migration fault tolerance
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Tags:** psychological, testing, test, quiz
**Requires at least:** 3.2
**Tested up to:** 4.3.1
**Stable tag:** 0.18
**Stable tag:** 0.18.1
**License:** GPLv3
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html

Expand Down
4 changes: 4 additions & 0 deletions src/Addon/IWordPressFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

interface WpTesting_Addon_IWordPressFacade extends WpTesting_WordPress_IPriority
{
/**
* @return string
*/
public function getTablePrefix();

/**
* Hooks a function on to a specific action.
Expand Down
2 changes: 1 addition & 1 deletion src/Facade.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public function setupORM()
$schema->setKeysOverride(array(), $wptPrefix . 'fields', 'foreign');
$schema->setKeysOverride(array(), $wptPrefix . 'field_values', 'foreign');

$this->wp->doAction('wp_testing_orm_setup', $schema, $database);
$this->wp->doAction('wp_testing_orm_setup', $schema, $database, $this);

$this->isOrmSettedUp = true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Test/Editor/edit-formulas.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<?php endforeach ?>
</td>
<td class="operators">
<?php foreach(explode(', ', '<, >, <=, =>, <>, AND, OR, ( {selection} ), NOT ( {selection} )') as $operator): ?>
<?php foreach(explode(', ', '<, >, <=, =>, <>, =, AND, OR, ( {selection} ), NOT ( {selection} )') as $operator): ?>
<input type="button"
data-source="<?php echo htmlspecialchars($operator) ?>"
title="<?php echo __('Comparision', 'wp-testing') ?>"
Expand Down
2 changes: 1 addition & 1 deletion wp-testing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Wp-testing
* Plugin URI: http://wordpress.org/extend/plugins/wp-testing/
* Description: Helps to create psychological tests.
* Version: 0.18
* Version: 0.18.1
* Author: Alexander Ustimenko
* Author URI: http://ustimen.co
* License: GPL3
Expand Down

0 comments on commit 5019146

Please sign in to comment.