]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - install.php
[TASK] clean dead code from install.php
[jirafeau_mojo42.git] / install.php
index 12107533d7abd6271a3dd0a808030495f694d3de..b6b322d5a38334a26b2037643dae79367880c92e 100644 (file)
@@ -26,21 +26,12 @@ require(JIRAFEAU_ROOT . 'lib/settings.php');
 require(JIRAFEAU_ROOT . 'lib/functions.php');
 require(JIRAFEAU_ROOT . 'lib/lang.php');
 
-/**
- * Prepend used functions
- **/
-
-function jirafeau_quoted($str)
-{
-    return QUOTE . str_replace(QUOTE, "\'", $str) . QUOTE;
-}
-
 function jirafeau_export_cfg($cfg)
 {
     $content = '<?php' . NL;
-    $content .= '/* ' . t('This file was generated by the install process. ' .
+    $content .= '/* This file was generated by the install process. ' .
                'You can edit it. Please see config.original.php to understand the ' .
-               'configuration items.') . ' */' . NL;
+               'configuration items. */' . NL;
     $content .= '$cfg = ' . var_export($cfg, true) . ';';
 
     $fileWrite = file_put_contents(JIRAFEAU_CFG, $content);
@@ -225,8 +216,11 @@ case 2:
         <td class = "field"><input type = "text" name = "web_root"
         id = "input_web_root" value = "<?php
         echo(empty($cfg['web_root']) ?
-          'http://' . $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__),
-          '', $_SERVER['REQUEST_URI']) : $cfg['web_root']);
+          $_SERVER['HTTP_HOST'] . str_replace(
+              basename(__FILE__),
+              '',
+              $_SERVER['REQUEST_URI']
+          ) : $cfg['web_root']);
       ?>" size = "40" /></td>
         </tr> <tr> <td class = "info" colspan = "2"><?php
         echo t('DATA_DIR_EXPLAINATION');

patrick-canterino.de