]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/setconfig.php
Merged
[quix0rs-gnu-social.git] / scripts / setconfig.php
index 401dda0f2b81ab2927d0c551fe58b8ab5d95d3db..dc6843b92d3e16e56c2b46079061260f59a9aa35 100755 (executable)
@@ -39,14 +39,14 @@ With no args, lists all currently set values.
 
 END_OF_SETCONFIG_HELP;
 
-require_once INSTALLDIR.'/scripts/commandline.inc';
+require_once INSTALLDIR.'/scripts/commandline.inc.php';
 
 if (empty($args)) {
     if (have_option('a', 'all')) {
         foreach ($config as $section => $section_value) {
             foreach ($section_value as $setting => $value) {
                 if (have_option('v', 'verbose') || !is_array($value)) {
-                    # Don't print array's without the verbose flag
+                    // Don't print array's without the verbose flag
                     printf("%-20s %-20s %s\n", $section, $setting, var_export($value, true));
                 }
             }