aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/New_channel.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-12-10 10:38:06 +0100
committerMario Vavti <mario@mariovavti.com>2018-12-10 10:38:06 +0100
commit15a689c6f549e25a1301a8cb8ba92c4cd4f90300 (patch)
tree7853e7adfa1c105038fdc0fe53f4e896925b3d65 /Zotlabs/Module/New_channel.php
parent61f7c1e7d717cee4feb769e8e66cea53514a684f (diff)
parent30efeb5becb2b5e1133f429460c5c3bbc9b44f55 (diff)
downloadvolse-hubzilla-15a689c6f549e25a1301a8cb8ba92c4cd4f90300.tar.gz
volse-hubzilla-15a689c6f549e25a1301a8cb8ba92c4cd4f90300.tar.bz2
volse-hubzilla-15a689c6f549e25a1301a8cb8ba92c4cd4f90300.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Module/New_channel.php')
-rw-r--r--Zotlabs/Module/New_channel.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php
index a9022a03a..73cdf4c8c 100644
--- a/Zotlabs/Module/New_channel.php
+++ b/Zotlabs/Module/New_channel.php
@@ -145,7 +145,7 @@ class New_channel extends \Zotlabs\Web\Controller {
$canadd = true;
if($r && ($limit !== false)) {
$channel_usage_message = sprintf( t("You have created %1$.0f of %2$.0f allowed channels."), $r[0]['total'], $limit);
- if ($r[0]['total'] >= $limit) {
+ if ($r[0]['total'] > $limit) {
$canadd = false;
}
}