| Age | Commit message (Collapse) | Author | Files | Lines |
|
The $magic_quote parameter for public methods was kept for backwards
compatibility purposes, but is no longer used.
Fixes #674
|
|
for 5.20.* branch, PHP7.4 shows deprecation notice, so the function_exists() is not enough.
|
|
Magic quotes were removed from PHP in v5.4.0.
The return value of `get_magic_quotes_runtime()` will be 0 if
`magic_quotes_runtime` is off, 1 otherwise. And as of PHP 5.4.0, it will
always returns `false`.
This minor change prevents trying to set the ini value when the ini
rective is not available and cleans up some old/unused/commented out
code.
Refs:
* http://php.net/manual/en/info.configuration.php#ini.magic-quotes-runtime
* http://php.net/manual/en/function.get-magic-quotes-runtime.php
Fixes #407
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Minor changes to original commit message
|
|
unset($this) throws a fatal error on linting. Use internal
garbage collection to clean up old objects instead.
Fixes #257
Signed-off-by: Damien Regad <dregad@mantisbt.org>
As per PHP manual, "It is not possible to unset $this inside an object
method since PHP 5." (see http://php.net/manual/function.unset, Notes
section)
|
|
dbTable::_tag_open() throws "Only variables should be passed by
reference" error when processing INDEX and DATA tags.
Fixes #229, fixes #260
|
|
This is the original commit from @valioz, rebased on latest master
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Conflicts:
drivers/adodb-db2ora.inc.php
drivers/adodb-mssqlpo.inc.php
drivers/adodb-odbc_oracle.inc.php
|
|
http://php.net/manual/en/language.basic-syntax.phptags.php
|
|
- Move all files in adodb5/ to root
- Remove adodb-for-php4/ directory
|