X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=8bd3f6c5e2c9eb3ae6ca5c23e0f5db5032ed9755;hb=6709efc8d60c9277a668b02f4f128ba375dfb534;hp=e58f7372827636c539df32504df2a1c2b96925a0;hpb=2f132cf112c9f6e30f10a016173f59a12c7f9ebe;p=dylansserver.git diff --git a/index.php b/index.php index e58f737..8bd3f6c 100644 --- a/index.php +++ b/index.php @@ -13,10 +13,10 @@ abstract class cms { public function __construct() { $config = parse_ini_file($this->config_file, true); $this->db = new mysqli( - $config[database]['domain'], - $config[database]['user'], - $config[database]['password'], - $config[database]['database']); + $config['database']['domain'], + $config['database']['user'], + $config['database']['password'], + $config['database']['database']); if (mysqli_connect_errno()) { echo "Problem connecting to database: "; echo mysqli_connect_error(); @@ -163,7 +163,7 @@ class index extends cms {
  • git://dylansserver.com
  • + "/git/">git://dylansserver.com
  • some notes:

    @@ -435,8 +435,8 @@ class note extends cms { // and a default author needs to be set // for no-javascript users. $stmt->bind_param('sss', - htmlspecialchars($_POST['name']), - htmlspecialchars($_POST['text']), + $_POST['name'], + $_POST['text'], $this->id); $stmt->execute(); } @@ -491,7 +491,7 @@ END_OF_NAVIGATION; $date_posted = $entry['date_posted']; $author = $entry['author']; $text = htmlspecialchars($entry['text']); - $head = "

    $author

    "; + $head = "

    " . htmlspecialchars($author) . "

    "; echo << $head