History log of /web-bugs/www/fix.php (Results 1 – 23 of 23)
Revision Date Author Comments
# 9d47b05f 22-May-2019 Peter Kokot

Convert all tabs to spaces


# 1c9eef52 20-May-2019 Peter Kokot

Upgrade to PHP 7.3

Application now also support PHP 7.3 as a minimum for future code
changes.


# 5cd2630a 24-Dec-2018 Peter Kokot

Add dependency injection container

This patch introduces a dependency injection container for the PHP bug
tracker application. Container deals with the creation of all service
classe

Add dependency injection container

This patch introduces a dependency injection container for the PHP bug
tracker application. Container deals with the creation of all service
classes and additionally provides retrieving of configuration parameters.
Service classes are used everywhere in the app - from accessing database
to uploading files. Configuration parameters include infrastructure
configuration (database credentials...) and application level
configuration (directories locations...).

Container is compatible with the PSR-11 container interface defined
so it is simple to quickly understand its usage. Advanced features
such as autowiring are not included in this phase.

show more ...


# fe4c5e81 23-Dec-2018 Kalle Sommer Nielsen

Minor cleanup


# 10b0ad9c 16-Dec-2018 Peter Kokot

Refactor bugs_get_bug() to repository


# a5b6fa07 16-Dec-2018 Peter Kokot

Refactor get_resolve_reasons() to repository class


# a5c3a8b7 05-Dec-2018 Peter Kokot

Refactor error handling in quick fixing link

This patch refactors error handling from PEAR error to exceptions. Error
handling has been refactored via
23298a123688443276f60143c1261f8

Refactor error handling in quick fixing link

This patch refactors error handling from PEAR error to exceptions. Error
handling has been refactored via
23298a123688443276f60143c1261f85a85873fe.

show more ...


# a06f85b0 24-Oct-2018 Peter Kokot

Refactor long array() syntax to short []

Since site is using PHP 5.4+ already, the longer `array()` syntax can be
refactored to shorter `[]`. Also code is already using short array
s

Refactor long array() syntax to short []

Since site is using PHP 5.4+ already, the longer `array()` syntax can be
refactored to shorter `[]`. Also code is already using short array
syntax on some places.

show more ...


# 180dccfe 17-Oct-2018 Peter Kokot

Trim trailing whitespace


# 5d5debad 16-Jun-2018 Rasmus Lerdorf

Fix another notice


# 638a3fb1 25-Jul-2017 Kalle Sommer Nielsen

Hopefully last round of fixes for missing session_start() calls, also fixes a poor call to redirect() in login.php


# d04d379e 24-Jul-2017 Kalle Sommer Nielsen

Authenticate before each call to the header, this should probably be done in the header function anyway.

Fixes some navigational links only showing on certain pages


# 1de55b7a 06-Aug-2014 Sobak

Exit script execution directly in redirect()


# 232f1497 03-Aug-2014 Michael

Remove XHTML


# 95f4f5a0 06-Jul-2014 Sobak

Fixed bug #67006 (login form in developer's section doesn't work)


# b3c9c4d0 18-Apr-2012 Johannes Schlüter

Use a more generic label, independent from VCS


# 813b3cf4 25-Mar-2012 Rasmus Lerdorf

s/SVN/Git/g


# c3110c33 27-Jan-2012 Rasmus Lerdorf

- The end of an era - switch "Bogus" to "Not a bug" by popular demand
- Switch back to master
- Add site_method to make it easier to install on non-ssl test sites


# cc16c494 12-Oct-2011 Felipe Pena

- Added option to search for project (php, pecl)
- Restored behavior to send mail to package maintainers instead of pecl lists


# c75debbe 28-Jun-2011 Felipe Pena

- Fix warning


# e38d3d7b 28-Jun-2011 Felipe Pena

- Fix typo in variable name


# 998ecc69 12-Dec-2010 Felipe Pena

- Added list of security developers
- Changed bugs_authenticate function
new prototype: (&$user, &$pw, &$logged_in, &$user_flags)

$user_flags:
define('BUGS_NORMAL_USER', 1<<

- Added list of security developers
- Changed bugs_authenticate function
new prototype: (&$user, &$pw, &$logged_in, &$user_flags)

$user_flags:
define('BUGS_NORMAL_USER', 1<<0);
define('BUGS_DEV_USER', 1<<1);
define('BUGS_TRUSTED_DEV', 1<<2);
define('BUGS_SECURITY_DEV', 1<<3);

show more ...


# 0b1ebac1 09-Mar-2010 Jani Taskinen

- Added missing fix.php (doh!)