Browse Source

Drush_Update_2021-01-28_17_01

master
root 4 years ago
parent
commit
61b18352fe
39 changed files with 89 additions and 5 deletions
  1. +4
    -0
      advanced_search.php
  2. +3
    -0
      duplicate_manager.php
  3. +2
    -0
      duplicate_modify.php
  4. +3
    -0
      duplicate_search.php
  5. +2
    -0
      error.php
  6. +3
    -0
      extract.php
  7. +2
    -0
      import.php
  8. +2
    -0
      import_csa.php
  9. +2
    -0
      import_csa_modify.php
  10. +2
    -0
      import_modify.php
  11. +2
    -2
      index.php
  12. +4
    -2
      initialize/PhpErrorSettings.inc.php
  13. +1
    -1
      initialize/ini.inc.php
  14. +3
    -0
      library_search.php
  15. +2
    -0
      modify.php
  16. +2
    -0
      opensearch.php
  17. +2
    -0
      queries.php
  18. +2
    -0
      query_history.php
  19. +2
    -0
      query_manager.php
  20. +2
    -0
      query_modify.php
  21. +2
    -0
      receipt.php
  22. +2
    -0
      record.php
  23. +2
    -0
      rss.php
  24. +3
    -0
      search.php
  25. +2
    -0
      show.php
  26. +2
    -0
      simple_search.php
  27. +2
    -0
      sitemap.php
  28. +2
    -0
      sql_search.php
  29. +3
    -0
      sru.php
  30. +2
    -0
      unapi.php
  31. +2
    -0
      user_details.php
  32. +3
    -0
      user_login.php
  33. +2
    -0
      user_logout.php
  34. +2
    -0
      user_options.php
  35. +2
    -0
      user_options_modify.php
  36. +3
    -0
      user_receipt.php
  37. +2
    -0
      user_removal.php
  38. +2
    -0
      user_validation.php
  39. +2
    -0
      users.php

+ 4
- 0
advanced_search.php View File

@ -1,4 +1,8 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
duplicate_manager.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
duplicate_modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
duplicate_search.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
error.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
extract.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
import.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
import_csa.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
import_csa_modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
import_modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 2
index.php View File

@ -1,6 +1,6 @@
<?php
// turn on warnings and notice durin developement
error_reporting(E_ERROR);
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 4
- 2
initialize/PhpErrorSettings.inc.php View File

@ -1,4 +1,6 @@
<?PHP
// produchtion
error_reporting(E_ERROR)
error_reporting(E_ERROR);
//developement
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
//error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
?>

+ 1
- 1
initialize/ini.inc.php View File

@ -93,7 +93,7 @@
//Overrride settings above
// values for security not in resporitory
// include('ini.dev.php');
include('ini.live.php')
include('ini.live.php');
// The character encoding that's used as content-type for HTML, RSS and email output:
// IMPORTANT NOTES: - the encoding type specified here must match the default character set you've


+ 3
- 0
library_search.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
opensearch.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
queries.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
query_history.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
query_manager.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
query_modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
receipt.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
record.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
rss.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
search.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
show.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
simple_search.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
sitemap.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
sql_search.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
sru.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
unapi.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_details.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
user_login.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_logout.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_options.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_options_modify.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 3
- 0
user_receipt.php View File

@ -1,4 +1,7 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_removal.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
user_validation.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


+ 2
- 0
users.php View File

@ -1,4 +1,6 @@
<?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).


Loading…
Cancel
Save