summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-11-10 20:21:22 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2015-11-14 09:27:35 +0100
commita114476e8134f27d2dd33b1f023535e3cc8bd094 (patch)
tree3ee04b3f10e56ea805c644ae466dec3e6822fa3e /web
parent0c599b39b0cead26550cea73194e950718a03d4a (diff)
downloadaur-a114476e8134f27d2dd33b1f023535e3cc8bd094.tar.gz
aur-a114476e8134f27d2dd33b1f023535e3cc8bd094.tar.xz
Make the notification script configurable
Add a configuration option to set the path of the notification script. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web')
-rw-r--r--web/lib/acctfuncs.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php
index a2009988..a166d65c 100644
--- a/web/lib/acctfuncs.inc.php
+++ b/web/lib/acctfuncs.inc.php
@@ -1282,7 +1282,7 @@ function account_set_ssh_keys($uid, $ssh_keys, $ssh_fingerprints) {
* @return void
*/
function notify($params, $text='') {
- $cmd = realpath('../../scripts/notify.py');
+ $cmd = config_get('notifications', 'notify-cmd');
foreach ($params as $param) {
$cmd .= ' ' . escapeshellarg($param);
}