]> git.plutz.net Git - cgilite/blobdiff - action.sh
more debug info
[cgilite] / action.sh
index 0077575ce2b5e62d571c851fbc76aa63c5ebbb77..1f44ca10bf4c2a54c1cbdea7483fd2fd5ea9c1e5 100755 (executable)
--- a/action.sh
+++ b/action.sh
 
 ACTION="$(echo "$_GET[\"action\"]" |egrep '^[a-zA-Z0-9_-]+$')"
 ACTION="${_EXEC}/actions/${ACTION}.sh"
-[ -x "$ACTION" ] || echo -n "Location: http://$HTTP_HOST/?page=error\n\n"
 
-. $ACTION
+if [ -x "$ACTION" ]; then
+  debug "trying to execute $ACTION"
+  . $ACTION
+else
+  debug "unable to execute $ACTION"
+  echo -n "Location: ?p=error\n\n"
+fi
+