Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ class cb_p6_core {
// Holds plugin info. Overridden by options from db by merging db options into this

);

public $hardcoded =array(

// Holds hardcoded vars

);

public $lang =array(

// Holds lang vars

);

private function __construct()
{
Expand Down
3 changes: 3 additions & 0 deletions plugin/includes/widgets.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ function widget($args, $instance) {

global $cb_p6;
extract( $args );
if (!isset($instance['title']) ) {
$instance['title'] = '';
}
$title = apply_filters('widget_title', $instance['title']);
$message = $instance['message'];
?>
Expand Down
2 changes: 2 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
= 2.2.4 =

* Removed unused updater code
* Addressed some PHP warnings

= 2.2.3 =

Expand Down Expand Up @@ -223,6 +224,7 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
= 2.2.4 =

* Removed unused updater code
* Addressed some PHP warnings

= 2.2.3 =

Expand Down