Fix conditional indentation. Add vim modeline.

This commit is contained in:
Junior 2025-09-30 14:09:44 -04:00
parent bd56aee162
commit ecad8d90d6

View File

@ -17,38 +17,38 @@ if ( php_sapi_name() != "cli" ) {
// This session variable is TRUE when successfully logged in // This session variable is TRUE when successfully logged in
// If set to true, and using default authentication, no login will be required // If set to true, and using default authentication, no login will be required
if ( !isset($_SESSION['validated']) ) { if ( !isset($_SESSION['validated']) ) {
$_SESSION['validated'] = false; $_SESSION['validated'] = false;
} }
// This session variable is set to the current browsing folder. // This session variable is set to the current browsing folder.
// It is relative to the COMICSDIR constant defined in variables.php // It is relative to the COMICSDIR constant defined in variables.php
if ( !isset($_SESSION['compath']) ) { if ( !isset($_SESSION['compath']) ) {
$_SESSION['compath'] = '/'; $_SESSION['compath'] = '/';
} }
if ( $_SESSION['compath'] == "" ) $_SESSION['compath'] = "/"; if ( $_SESSION['compath'] == "" ) $_SESSION['compath'] = "/";
// This session variable is set to the current comic in Base64 // This session variable is set to the current comic in Base64
if ( !isset($_SESSION['comfile']) ) { if ( !isset($_SESSION['comfile']) ) {
$_SESSION['comfile'] = ""; $_SESSION['comfile'] = "";
} }
// Initialize the hash session variable used for SSO // Initialize the hash session variable used for SSO
// Set the hash to the passed in value if it exists // Set the hash to the passed in value if it exists
if ( !isset($_SESSION['hash']) ) { if ( !isset($_SESSION['hash']) ) {
$_SESSION['hash'] = ""; $_SESSION['hash'] = "";
} }
if ( isset($_REQUEST['hash']) ) { if ( isset($_REQUEST['hash']) ) {
$_SESSION['hash'] = $_REQUEST['hash']; $_SESSION['hash'] = $_REQUEST['hash'];
} }
// Sorting for folders. // Sorting for folders.
// Valid values (from constants): SORTBYNAME, SORTBYDATE // Valid values (from constants): SORTBYNAME, SORTBYDATE
if ( !isset($_SESSION['sortorder']) ) { if ( !isset($_SESSION['sortorder']) ) {
$_SESSION['sortorder'] = SORTBYDATE; $_SESSION['sortorder'] = SORTBYDATE;
} }
} }
// Make our PDO database connection which will be used in all scripts // Make our PDO database connection which will be used in all scripts
$globaldbh = new PDO("mysql:host=" . DBHOST . ";dbname=" . DBNAME, DBUSER, DBPASS); $globaldbh = new PDO("mysql:host=" . DBHOST . ";dbname=" . DBNAME, DBUSER, DBPASS);
?> // vim: sw=4 ts=4 et ai mouse-=a: