summaryrefslogtreecommitdiff
path: root/scripts/publicqueuehandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/publicqueuehandler.php')
-rwxr-xr-xscripts/publicqueuehandler.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/publicqueuehandler.php b/scripts/publicqueuehandler.php
index c10c67910..58ecc1745 100755
--- a/scripts/publicqueuehandler.php
+++ b/scripts/publicqueuehandler.php
@@ -20,8 +20,8 @@
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-$shortoptions = 'r';
-$longoptions = array('resource');
+$shortoptions = 'r::';
+$longoptions = array('resource::');
$helptext = <<<END_OF_PUBLIC_HELP
Daemon script for pushing new notices to public XMPP subscribers.
@@ -61,8 +61,8 @@ if (common_config('xmpp','enabled')==false) {
exit();
}
-if (have_option('-r')) {
- $resource = get_option_value('-r');
+if (have_option('r')) {
+ $resource = get_option_value('r');
} else if (have_option('--resource')) {
$resource = get_option_value('--resource');
} else if (count($args) > 0) {