diff options
author | friendica <info@friendica.com> | 2012-06-25 03:25:06 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-25 03:25:06 -0700 |
commit | 7ea5917bf794c431fe304fa25380f19a6927cf63 (patch) | |
tree | 92324c19bb13025d8f2f0087212348a039acbec6 /include | |
parent | 35a098e0dc7940974132d8d65bbc4418d92fb204 (diff) | |
download | volse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.tar.gz volse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.tar.bz2 volse-hubzilla-7ea5917bf794c431fe304fa25380f19a6927cf63.zip |
more service class functionality
Diffstat (limited to 'include')
-rw-r--r-- | include/plugin.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/plugin.php b/include/plugin.php index e8fec4cbe..d762e8717 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 : '') ; +} |