Browse Source

fix: fix constant usage before declaration (#113)

pull/114/head
Martin Monperrus 4 years ago
committed by GitHub
parent
commit
9350aa4ee0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      bibtexbrowser.php

2
bibtexbrowser.php

@ -46,7 +46,7 @@ function c($key) { // shortcut
// it will help you to upgrade the script with a new version
// the changes that require existing bibtexbrowser symbols should be in bibtexbrowser.after.php (included at the end of this file)
// per bibtex file configuration
@include(@$_GET[Q_FILE].'.local.php');
@include('bibtexbrowser.local.php');
@include(preg_replace('/\.php$/','.local.php',__FILE__));
// the encoding of your bibtex file

Loading…
Cancel
Save