summaryrefslogtreecommitdiff
path: root/session
diff options
context:
space:
mode:
authorJean-Michel Vourgère <nirgal@debian.org>2019-11-04 22:10:48 +0100
committerDamien Regad <dregad@mantisbt.org>2019-11-12 13:46:19 +0100
commit064f2f108c0b9781b61b353442691099f5e79845 (patch)
treedfac29d1c18c91abb81f79a1850c3fbadc8afc56 /session
parent01e2e0d97226556052b146cf98e584fd7a8df249 (diff)
downloadadodb-064f2f108c0b9781b61b353442691099f5e79845.tar.gz
adodb-064f2f108c0b9781b61b353442691099f5e79845.tar.bz2
adodb-064f2f108c0b9781b61b353442691099f5e79845.zip
Codespell assisted typo cleaning
Diffstat (limited to 'session')
-rw-r--r--session/adodb-sess.txt6
-rw-r--r--session/adodb-session.php6
-rw-r--r--session/adodb-session2.php6
-rw-r--r--session/old/adodb-cryptsession.php2
-rw-r--r--session/old/adodb-session-clob.php2
-rw-r--r--session/old/adodb-session.php2
6 files changed, 12 insertions, 12 deletions
diff --git a/session/adodb-sess.txt b/session/adodb-sess.txt
index c6c76858..1e9a8aac 100644
--- a/session/adodb-sess.txt
+++ b/session/adodb-sess.txt
@@ -58,10 +58,10 @@ Originally, the user had to call adodb_sess_open().
Postgres
SAP
-* filter(): Used to support multiple, simulataneous encryption/compression
+* filter(): Used to support multiple, simultaneous encryption/compression
schemes.
-* Debug support is improved thru _rsdump() function, which is called after
+* Debug support is improved through _rsdump() function, which is called after
every database call.
------------
@@ -120,7 +120,7 @@ next release of ADODB.
If so, I will modify the current documentation to detail the new
functionality. To that end, what file(s) contain the documentation? Please
-send them to me if they are not publically available.
+send them to me if they are not publicly available.
Also, if there is *anything* in the code that you like to see changed, let
me know.
diff --git a/session/adodb-session.php b/session/adodb-session.php
index 66ff3559..e1a04928 100644
--- a/session/adodb-session.php
+++ b/session/adodb-session.php
@@ -599,7 +599,7 @@ class ADODB_Session {
$sql = "SELECT $data FROM $table WHERE sesskey = $binary $qkey AND expiry >= " . time();
/* Lock code does not work as it needs to hold transaction within whole page, and we don't know if
- developer has commited elsewhere... :(
+ developer has committed elsewhere... :(
*/
#if (ADODB_Session::Lock())
# $rs = $conn->RowLock($table, "$binary sesskey = $qkey AND expiry >= " . time(), $data);
@@ -921,12 +921,12 @@ ADODB_Session::_init();
if (empty($ADODB_SESSION_READONLY))
register_shutdown_function('session_write_close');
-// for backwards compatability only
+// for backwards compatibility only
function adodb_sess_open($save_path, $session_name, $persist = true) {
return ADODB_Session::open($save_path, $session_name, $persist);
}
-// for backwards compatability only
+// for backwards compatibility only
function adodb_sess_gc($t)
{
return ADODB_Session::gc($t);
diff --git a/session/adodb-session2.php b/session/adodb-session2.php
index 3619b20b..a0ce0efa 100644
--- a/session/adodb-session2.php
+++ b/session/adodb-session2.php
@@ -643,7 +643,7 @@ class ADODB_Session {
$sql = "SELECT $ADODB_SESSION_SELECT_FIELDS FROM $table WHERE sesskey = $binary ".$conn->Param(0)." AND expiry >= " . $conn->sysTimeStamp;
/* Lock code does not work as it needs to hold transaction within whole page, and we don't know if
- developer has commited elsewhere... :(
+ developer has committed elsewhere... :(
*/
#if (ADODB_Session::Lock())
# $rs = $conn->RowLock($table, "$binary sesskey = $qkey AND expiry >= " . time(), sessdata);
@@ -941,12 +941,12 @@ ADODB_Session::_init();
if (empty($ADODB_SESSION_READONLY))
register_shutdown_function('session_write_close');
-// for backwards compatability only
+// for backwards compatibility only
function adodb_sess_open($save_path, $session_name, $persist = true) {
return ADODB_Session::open($save_path, $session_name, $persist);
}
-// for backwards compatability only
+// for backwards compatibility only
function adodb_sess_gc($t)
{
return ADODB_Session::gc($t);
diff --git a/session/old/adodb-cryptsession.php b/session/old/adodb-cryptsession.php
index c6246b80..3d7589eb 100644
--- a/session/old/adodb-cryptsession.php
+++ b/session/old/adodb-cryptsession.php
@@ -197,7 +197,7 @@ $Crypt = new MD5Crypt;
ADOConnection::outp( '
-- Session Replace: '.$ADODB_SESS_CONN->ErrorMsg().'</p>',false);
} else {
- // bug in access driver (could be odbc?) means that info is not commited
+ // bug in access driver (could be odbc?) means that info is not committed
// properly unless select statement executed in Win2000
if ($ADODB_SESS_CONN->databaseType == 'access') $rs = $ADODB_SESS_CONN->Execute("select sesskey from $ADODB_SESSION_TBL WHERE sesskey='$key'");
diff --git a/session/old/adodb-session-clob.php b/session/old/adodb-session-clob.php
index e7c00388..8c03ddc3 100644
--- a/session/old/adodb-session-clob.php
+++ b/session/old/adodb-session-clob.php
@@ -318,7 +318,7 @@ function adodb_sess_write($key, $val)
ADOConnection::outp( '
-- Session Replace: '.nl2br($err).'</p>',false);
} else {
- // bug in access driver (could be odbc?) means that info is not commited
+ // bug in access driver (could be odbc?) means that info is not committed
// properly unless select statement executed in Win2000
if ($ADODB_SESS_CONN->databaseType == 'access')
$rs = $ADODB_SESS_CONN->Execute("select sesskey from $ADODB_SESSION_TBL WHERE sesskey='$key'");
diff --git a/session/old/adodb-session.php b/session/old/adodb-session.php
index 548b32e5..60ec0eb8 100644
--- a/session/old/adodb-session.php
+++ b/session/old/adodb-session.php
@@ -307,7 +307,7 @@ function adodb_sess_write($key, $val)
ADOConnection::outp( '
-- Session Replace: '.$ADODB_SESS_CONN->ErrorMsg().'</p>',false);
} else {
- // bug in access driver (could be odbc?) means that info is not commited
+ // bug in access driver (could be odbc?) means that info is not committed
// properly unless select statement executed in Win2000
if ($ADODB_SESS_CONN->databaseType == 'access')
$rs = $ADODB_SESS_CONN->Execute("select sesskey from $ADODB_SESSION_TBL WHERE sesskey='$key'");