History log of /web-bugs/ (Results 151 – 175 of 1003)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
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.

8c52db6917-Oct-2018 Peter Kokot

Sync leading and final newlines

This patch adds missing newlines, trims multiple redundant final
newlines into a single one and trims leading newlines at the beginning
of the files.

Sync leading and final newlines

This patch adds missing newlines, trims multiple redundant final
newlines into a single one and trims leading newlines at the beginning
of the files.

According to POSIX, a line is a sequence of zero or more non-'<newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2

show more ...

180dccfe17-Oct-2018 Peter Kokot

Trim trailing whitespace

a47cb31d17-Oct-2018 Peter Kokot

Convert CRLF line endings to LF

This patch simplifies line endings tracked in the Git repository and
syncs them to all include the LF style instead of the CRLF files.

Newline ch

Convert CRLF line endings to LF

This patch simplifies line endings tracked in the Git repository and
syncs them to all include the LF style instead of the CRLF files.

Newline characters:
- LF (\n) (*nix and Mac)
- CRLF (\r\n) (Windows)
- CR (\r) (old Mac, obsolete)

To see which line endings are in the index and in the working copy the
following command can be used:
`git ls-files --eol`

Git additionally provides `.gitattributes` file to specify if some files
need to have specific line endings on all platforms (either CRLF or LF).

Changed files shouldn't cause issues on modern Windows platforms because
Git can do output conversion if core.autocrlf=true is set on Windows
and then uses CRLF newlines in all files in the working tree.

Unless CRLF files are tracked specifically, Git by default tracks all
files in the index using LF newlines.

show more ...

1022f79f05-Aug-2018 Gabriel Caruso

Simplify link for people.php.net user

88fca9dc17-Sep-2018 zrhoffman

If the login redirect is to logout.php, redirect to index.php instead

904b512d17-Sep-2018 zrhoffman

search_for: We need to validate string ints with a regex, not a typecast

039c829b27-Aug-2018 Kalle Sommer Nielsen

Map the MDB2_FETCHMODE_* constants to their PDO counterparts, this should once again honor assoc/num specific queries

a728019630-Jun-2018 Peter Kokot

Remove unused Git ident attribute

$Id$ keywords were used in Subversion where they can be substituted with filename,
last revision number change, last changed date, and last user who cha

Remove unused Git ident attribute

$Id$ keywords were used in Subversion where they can be substituted with filename,
last revision number change, last changed date, and last user who changed it.

In Git this functionality is different and can be done with Git ident attributes.
These need to be defined manually for each file in the .gitattributes file and
are afterwards replaced with blob object name which is based only on particular
file contents.

This patch simplifes handling of $Id$ keywords by removing them since they are
not used anymore.

show more ...

12345678910>>...41