1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Issue #2970 btn-default > btn-default btn-secondary

This commit is contained in:
Cameron
2018-01-10 15:11:12 -08:00
parent b40b1916a3
commit 0671024c79
12 changed files with 18 additions and 18 deletions

View File

@@ -74,7 +74,7 @@ class error_shortcodes extends e_shortcode
$icon = e107::getParser()->toGlyph('fa-search');
$url = e107::getUrl()->create('search');
return '<a href="' . $url . '" class="btn btn-default">' . $icon . ' ' . LAN_ERROR_22 . '</a>';
return '<a href="' . $url . '" class="btn btn-default btn-secondary">' . $icon . ' ' . LAN_ERROR_22 . '</a>';
}
}