diff --git a/lib/default.php b/lib/default.php index 9872d8ffd3..6c7b18bccd 100644 --- a/lib/default.php +++ b/lib/default.php @@ -53,7 +53,7 @@ $default = 'broughtbyurl' => null, 'closed' => false, 'inviteonly' => false, - 'private' => false, + 'private' => true, 'ssl' => 'never', 'sslserver' => null, 'shorturllength' => 30, @@ -301,12 +301,14 @@ $default = array('disabled' => true), 'plugins' => array('default' => array('Geonames' => null, - 'Mapstraction' => null, - 'OStatus' => null, - 'WikiHashtags' => null, - 'RSSCloud' => null, 'ClientSideShorten' => null, 'StrictTransportSecurity' => null, + 'Bookmark' => null, + 'Event' => null, + 'Poll' => null, + 'QnA' => null, + 'SearchSub' => null, + 'TagSub' => null, 'OpenID' => null), 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories 'server' => null, diff --git a/lib/filenoticestream.php b/lib/filenoticestream.php index 8c01893634..2b5e53eaf7 100644 --- a/lib/filenoticestream.php +++ b/lib/filenoticestream.php @@ -60,7 +60,6 @@ class RawFileNoticeStream extends NoticeStream function __construct($file) { - parent::__construct(); $this->file = $file; } diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index 61258bfab6..555b280825 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -1408,4 +1408,9 @@ table.profile_list tr.alt { margin-top: 0px; } +.question p.best { + background: url(../images/rosette.png) no-repeat top left; + padding-left: 20px; +} + }/*end of @media screen, projection, tv*/ diff --git a/theme/neo/images/rosette.png b/theme/neo/images/rosette.png new file mode 100644 index 0000000000..f233bc7705 Binary files /dev/null and b/theme/neo/images/rosette.png differ