]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
most of code style errors gone
authorBrenda Wallace <shiny@cpan.org>
Mon, 14 Sep 2009 07:08:05 +0000 (19:08 +1200)
committerBrenda Wallace <shiny@cpan.org>
Mon, 14 Sep 2009 07:08:05 +0000 (19:08 +1200)
Conflicts:

install.php

install.php

index 6e7e833a303a96c1a876f2df24fbeae1116c8d6c..dea03fc5ec0ce08e4d5fa7bb796189a494b6dceb 100644 (file)
@@ -516,8 +516,7 @@ STR;
     }
 
     global $dbModules;
-    $db = call_user_func($dbModules[$dbtype]['installer'],
-        $host, $database, $username, $password);
+    $db = call_user_func($dbModules[$dbtype]['installer'], $host, $database, $username, $password);
 
     if (!$db) {
         // database connection failed, do not move on to create config file.
@@ -540,12 +539,10 @@ STR;
 
     updateStatus("StatusNet has been installed at $link");
     updateStatus("You can visit your <a href='$link'>new StatusNet site</a>.");
-?>
-
-<?php
 }
 
-function pgsql_db_installer($host, $database, $username, $password) {
+function Pgsql_Db_installer($host, $database, $username, $password) 
+{
     $connstring = "dbname=$database host=$host user=$username";
 
     //No password would mean trust authentication used.
@@ -605,7 +602,8 @@ function pgsql_db_installer($host, $database, $username, $password) {
     return $db;
 }
 
-function mysql_db_installer($host, $database, $username, $password) {
+function Mysql_Db_installer($host, $database, $username, $password) 
+{
     updateStatus("Starting installation...");
     updateStatus("Checking database...");
 
@@ -678,9 +676,10 @@ function writeConf($sitename, $server, $path, $fancy, $db)
 /**
  * Install schema into the database
  *
- * @param filename $filename    location of database schema file
- * @param conn $conn            connection to database
- * @param type $type type of database, currently mysql or pgsql
+ * @param string $filename location of database schema file
+ * @param dbconn $conn     connection to database
+ * @param string $type     type of database, currently mysql or pgsql
+ * 
  * @return boolean - indicating success or failure
  */
 function runDbScript($filename, $conn, $type = 'mysql')