Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #23932: Plugin license implementation is not coherent with interface #5271

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ trait PluginStatus {
* Default "always enable" status
*/
object AlwaysEnabledPluginStatus extends PluginStatus {
override val current = PluginStatusInfo.EnabledNoLicense
override val isEnabled = true
override val current = PluginStatusInfo.EnabledNoLicense
override def isEnabled() = true
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ import net.liftweb.util.Helpers
import scala.xml.NodeSeq

trait PluginEnableImpl extends PluginStatus {
override val current = PluginStatusInfo.EnabledNoLicense
override val isEnabled = true
override val current = PluginStatusInfo.EnabledNoLicense
override def isEnabled() = true
}

/*
Expand Down