1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-24 07:03:06 +02:00

Bootstrap3 styling fixes and some removal of deprecated save_prefs() usage.

This commit is contained in:
Cameron
2014-01-15 02:56:39 -08:00
parent 712379f52e
commit c567fd265b
10 changed files with 30 additions and 26 deletions

View File

@@ -194,7 +194,7 @@ class cpage_shortcodes extends e_shortcode
$size = vartrue($options['size'], "");
$inc = ($size) ? " btn-".$size : "";
return '<a class="cpage btn btn-primary'.$inc.'" href="'.$url.'">'.$text.'</a>';
return '<a class="cpage btn btn-primary btn-cpage'.$inc.'" href="'.$url.'">'.$text.'</a>';
}