Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dokuwiki/dokuwiki
base: 3409ba76d3dc
Choose a base ref
...
head repository: dokuwiki/dokuwiki
compare: d443762bafe9
Choose a head ref
  • 17 commits
  • 82 files changed
  • 7 contributors

Commits on Jun 7, 2018

  1. removed safemode hack

    Safemode has been removed in PHP 5.4.0. We finally no longer need to
    deal with this insanity.
    splitbrain committed Jun 7, 2018
    Copy the full SHA
    fe22708 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2018

  1. add logic if the server uses unlimited memory settings in is_mem_avai…

    …lable()
    
    If memory is set to unlimited, then memory_limit will be -1, so set this to true in this case.
    wdl committed Jun 12, 2018
    Copy the full SHA
    985d618 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2018

  1. Fix .htaccess files for Apache 2.4 (and 2.2)

    Refer to module by suitable file name (mod_*.c).
    Test for mod_authz_core.c (instead of mod_authz_host.c) to properly
    detect Apache 2.4 and avoid false positive for Apache 2.2.
    xela74 committed Jun 17, 2018
    Copy the full SHA
    21c0177 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2018

  1. Change const use to var for Safari 9 (on iOS)

    Safari 9 in iOS does not support the use of `const` in strict mode. Unfortunately, some of us are stuck with Safari 9 due to not being able to upgrade.
    
    I am a big fan of progressive enhancement, but because all javascript code is packed together and sent off to the client, this small incompatibility breaks all javascript for safari 9 browsers. Switching these two keywords makes everything work again.
    
    There are no other uses of `const` in the codebase as far as I can find. This change has little to no impact on anything else, but slighlty extends the range of supported browsers.
    bwanders committed Jun 19, 2018
    Copy the full SHA
    018871f View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2018

  1. Merge pull request #2430 from bwanders/patch-1

    Change `const` use to `var` for Safari 9 (on iOS)
    splitbrain committed Jun 21, 2018
    Copy the full SHA
    2ead9e5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2429 from xela74/master

    Fix .htaccess files for Apache 2.4 (and 2.2)
    splitbrain committed Jun 21, 2018
    Copy the full SHA
    cbaf278 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2018

  1. Copy the full SHA
    ca549e4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2420 from sijongyeoil/patch-1

    add logic if the server uses unlimited memory settings in is_mem_available()
    splitbrain committed Jun 26, 2018
    Copy the full SHA
    95305c9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2414 from splitbrain/nosafemode

    removed safemode hack
    splitbrain committed Jun 26, 2018
    Copy the full SHA
    fdbbfed View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2018

  1. Copy the full SHA
    f8b8d04 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2018

  1. Merge pull request #2442 from pes-soft/jquery-theme-fix

    Add missing jquery content
    splitbrain committed Jul 20, 2018
    Copy the full SHA
    b5dfe38 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    e62a3a2 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2018

  1. translation update

    mahir authored and splitbrain committed Jul 27, 2018
    Copy the full SHA
    65a878f View commit details
    Browse the repository at this point in the history
  2. continue is break in switch

    This should fix a warning in PHP 7.3
    splitbrain committed Jul 27, 2018
    Copy the full SHA
    296be24 View commit details
    Browse the repository at this point in the history
  3. upgraded JSON class to latest (2006) version

    from http://mike.teczno.com/JSON/JSON.phps
    
    This fixes a problem on PHP 7.2. However ultimately this class should be
    dropped in favor of the native json_decode/json_encode functions.
    splitbrain committed Jul 27, 2018
    Copy the full SHA
    2145bd4 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into psr2

    * master:
      upgraded JSON class to latest (2006) version
      continue is break in switch
      translation update
      reference existing proper progress gif. fixes #2441
      Fix missing ui-bg_glass_95_fef1ec_1x400.png and be/jquery.ui.datepicker.js for jquery
      removed accidental merges of outdated translations
      Change `const` use to `var` for Safari 9 (on iOS)
      Fix .htaccess files for Apache 2.4 (and 2.2)
      add logic if the server uses unlimited memory settings in is_mem_available()
      removed safemode hack
    splitbrain committed Jul 27, 2018
    Copy the full SHA
    277113f View commit details
    Browse the repository at this point in the history
  5. deprecated JSON class

    JSON is natively supported since years. This makes
    2145bd4 obsolete again.
    splitbrain committed Jul 27, 2018
    Copy the full SHA
    d443762 View commit details
    Browse the repository at this point in the history