diff --git a/Model/SeoABTest.php b/Model/SeoABTest.php index ddc2741..8627a66 100644 --- a/Model/SeoABTest.php +++ b/Model/SeoABTest.php @@ -12,7 +12,7 @@ class SeoABTest extends SeoAppModel { * * @var string */ - public $displayField = 'title'; + public $displayField = 'slug'; /** * Validation rules @@ -110,7 +110,7 @@ class SeoABTest extends SeoAppModel { ); public $searchFields = array( - 'SeoUri.uri', 'SeoABTest.title', 'SeoABTest.slug', 'SeoABTest.id' + 'SeoUri.uri', 'SeoABTest.description', 'SeoABTest.slug', 'SeoABTest.id' ); public $slots = array( diff --git a/View/Helper/SeoHelper.php b/View/Helper/SeoHelper.php index 30c617b..68e0ad3 100755 --- a/View/Helper/SeoHelper.php +++ b/View/Helper/SeoHelper.php @@ -210,7 +210,7 @@ public function redmineLink($ticket_id = null) { return $this->Html->link( $ticket_id, SeoUtil::getConfig('abTesting.redmine') . $ticket_id, - array('class' => 'btn btn-mini btn-info', 'target' => '_blank') + array('class' => 'btn btn-xs btn-info', 'target' => '_blank') ); }