tweeper.php: make error about missing stylesheet more explicit
authorAntonio Ospite <ao2@ao2.it>
Wed, 1 Jul 2015 11:34:53 +0000 (13:34 +0200)
committerAntonio Ospite <ao2@ao2.it>
Wed, 1 Jul 2015 11:34:53 +0000 (13:34 +0200)
tweeper.php

index 81f5f85..178176d 100644 (file)
@@ -161,7 +161,7 @@ class Tweeper {
   private function load_stylesheet($host) {
     $stylesheet = "file://" . __DIR__ . "/rss_converter_" . $host . ".xsl";
     if (FALSE === file_exists($stylesheet)) {
-      trigger_error("Conversion to RSS not supported: $host", E_USER_ERROR);
+      trigger_error("Conversion to RSS not supported for $host ($stylesheet not found)", E_USER_ERROR);
       return NULL;
     }