Small changes
This commit is contained in:
parent
1132ae67aa
commit
31f32068a8
@ -18,8 +18,8 @@ function openGraphHeader($photoID) {
|
||||
$result = $database->query("SELECT title, description, url FROM lychee_photos WHERE id = '$photoID';");
|
||||
$row = $result->fetch_object();
|
||||
|
||||
$parseUrl = parse_url("http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
|
||||
$picture = $parseUrl['scheme']."://".$parseUrl['host'].$parseUrl['path']."/../uploads/big/".$row->url;
|
||||
$parseUrl = parse_url("http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
|
||||
$picture = $parseUrl['scheme']."://".$parseUrl['host'].$parseUrl['path']."/../uploads/big/".$row->url;
|
||||
|
||||
$return = '<!-- General Meta Data -->';
|
||||
$return .= '<meta name="title" content="'.$row->title.'" />';
|
||||
@ -103,7 +103,7 @@ function update($version = '') {
|
||||
if ($version!==''&&$configVersion!==$version) {
|
||||
$data = file_get_contents('../data/config.php');
|
||||
$data = preg_replace('/\$configVersion = \'[\w. ]*\';/', "\$configVersion = '$version';", $data);
|
||||
file_put_contents('../data/config.php', $data);
|
||||
if (file_put_contents('../data/config.php', $data)===false) return 'Error: Could not save updated config!';
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -30,6 +30,7 @@ function init($mode, $version) {
|
||||
unset($return['config']['username']);
|
||||
unset($return['config']['thumbQuality']);
|
||||
unset($return['config']['sorting']);
|
||||
unset($return['config']['dropboxKey']);
|
||||
unset($return['config']['login']);
|
||||
$return['loggedIn'] = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user