History log of /web-bugs/ (Results 151 – 175 of 1011)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
4efd3c3c02-Dec-2018 Peter Kokot

Add uploads directory to .gitignore

3821262524-Nov-2018 Peter Kokot

Refactor each() function to foreach()

The each() function has been deprecated since PHP 7.2 and shouldn't be
used anymore:
- http://php.net/manual/en/function.each.php

0818111c24-Nov-2018 Peter Kokot

Bump minimal required PHP version

13ecc02413-Nov-2018 Christoph M. Becker

Add note regarding active vs. security support

Cf. <https://bugs.php.net/bug.php?id=77126>.

6f59aec804-Nov-2018 Dan Wallis

Fix typo in Add GitHub Pull Request template

6ca9762625-Oct-2018 Peter Kokot

Fix extra indentation

cd01d60c24-Oct-2018 Peter Kokot

Remove redundant script type="text/javascript" attributes

Omitted type means that script is JavaScript [1] and for HTML 5 browsers
can be removed today.

[1] https://developer.mo

Remove redundant script type="text/javascript" attributes

Omitted type means that script is JavaScript [1] and for HTML 5 browsers
can be removed today.

[1] https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script

show more ...

16bea4f824-Oct-2018 Peter Kokot

Refactor SQL files

This separates the SQL files according to its functionality:
- database.sql for creating only database
- schema.sql for creating only database schema
- fixture

Refactor SQL files

This separates the SQL files according to its functionality:
- database.sql for creating only database
- schema.sql for creating only database schema
- fixtures.sql for inserting only data fixtures

This helps in building project from scratch with empty database with
only schema to insert custom development fixtures.

show more ...

a06f85b024-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 ...

8249fa5324-Oct-2018 Peter Kokot

Remove unused configuration db_extension

The `db_extension` was once used with PEAR's MDB2. With migration to
vanilla PDO, this is not used anymore.

3388a55323-Oct-2018 Peter Kokot

Enhance the package selection a bit

Changes:
- When first entering the report bug page, no package is selected
- When selecting parent group, deselect childs
- Increase the numbe

Enhance the package selection a bit

Changes:
- When first entering the report bug page, no package is selected
- When selecting parent group, deselect childs
- Increase the number of visibile packages to 12

show more ...

f161413223-Oct-2018 Peter Kokot

Use SQL standard comment instead of MySQL specific

8c1bedf123-Oct-2018 Peter Kokot

Update http to https

Changes:
- http links updated to https (those that work so far)
- us3.php.net mirror changed to php.net for fetching PHP versions
- some outdated links refre

Update http to https

Changes:
- http links updated to https (those that work so far)
- us3.php.net mirror changed to php.net for fetching PHP versions
- some outdated links refreshed

show more ...

21e0f76023-Oct-2018 Peter Kokot

Change dirname(__FILE__) to shorter __DIR__

ddd17b4723-Oct-2018 Peter Kokot

Update link to MySQL Full Text search docs

3b0b87e223-Oct-2018 Peter Kokot

Fix #76961: bugs.php.net/vote.php throws a Server Error

8fe6914123-Oct-2018 zrhoffman

Fix 76079: Attaching PRs to bug issues broken

This patch fixes attaching pull requests to bug tickets. This will need
to be resolved also using different consuming of the GitHub API in t

Fix 76079: Attaching PRs to bug issues broken

This patch fixes attaching pull requests to bug tickets. This will need
to be resolved also using different consuming of the GitHub API in the
near future due to possible rate limits and other limitations.
Additionally, would be good to get the PEAR dependency refactored for
handling the errors to not depend on outdated PEAR.

Otherwise, this fixes bug #76079 thanks to @zrhoffman

show more ...

1ed5c05d23-Oct-2018 Peter Kokot

Fix permissions

Having synced file permissions in Git repositories is a reccurring
issue. Git can track files as executables (0755) or not (0644). Usually,
all files except the execu

Fix permissions

Having synced file permissions in Git repositories is a reccurring
issue. Git can track files as executables (0755) or not (0644). Usually,
all files except the executable ones such as command line scripts or
binary executables, should be set to 0644.

This patch syncs permissions in the Git repository.

show more ...

a0b80a8323-Oct-2018 Peter Kokot

Add note about rpc.php

4bdb303423-Oct-2018 Peter Kokot

Refactor PDO wrapper to not depend on MDB2 anymore

The Bug_PDO is a thin PDO wrapper not dependant on the MDB2 anymore.

The rpc.php page included some old MDB2::errorMessage() usage

Refactor PDO wrapper to not depend on MDB2 anymore

The Bug_PDO is a thin PDO wrapper not dependant on the MDB2 anymore.

The rpc.php page included some old MDB2::errorMessage() usage which is
now refactored differently using only PDO way and current errors
handling.

show more ...

5344b77107-Oct-2018 zrhoffman

Fix #76273: Package affected section should be split

- include package-affected.js on bug reporting page
- package-affected.js: a dropdown for package categories
- package-affected.j

Fix #76273: Package affected section should be split

- include package-affected.js on bug reporting page
- package-affected.js: a dropdown for package categories
- package-affected.js: change the package list when the user selects a different package group
- packages affected: change select size to 5 so the user can see when the the package list changes

show more ...

c2a40c6b22-Oct-2018 Peter Kokot

Replace PEAR MDB2 constants with PDO constants

The changed constants are more understandable using PDO constants
nor are the dedicated definition needed anymore.

e6700f9e22-Oct-2018 Peter Kokot

Change visitor_ip MySQL field type to varbinary(16)

This now enables local installation more easily without manually
adjusting the field. The new varbinary field has been recently update

Change visitor_ip MySQL field type to varbinary(16)

This now enables local installation more easily without manually
adjusting the field. The new varbinary field has been recently updated
in the code for reporting bugs and adding comments.

show more ...

70d522f522-Oct-2018 Peter Kokot

Update README with installation info

7b505fa906-Aug-2018 Peter Kokot

Apply line-height CSS style to all pre tags

This improves readability when <pre> tags are used.

12345678910>>...41