From: friendica Date: Mon, 25 Jun 2012 10:25:06 +0000 (-0700) Subject: more service class functionality X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7ea5917bf794c431fe304fa25380f19a6927cf63;p=friendica.git more service class functionality --- diff --git a/include/plugin.php b/include/plugin.php index e8fec4cbea..d762e8717f 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -392,3 +392,8 @@ function upgrade_message() { $x = upgrade_link(); return t('This action exceeds the limits set by your subscription plan.') . (($x) ? ' ' . $x : '') ; } + +function upgrade_bool_message() { + $x = upgrade_link(); + return t('This action is not available under your subscription plan.') . (($x) ? ' ' . $x : '') ; +}