Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Paul
ATVG-CAD
Commits
4f807189
Commit
4f807189
authored
Oct 18, 2018
by
AtjonTV
Browse files
Release 1.1 (Patch 9)
parent
ac994da7
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
4f807189
...
...
@@ -5,6 +5,12 @@ Read the [Line-by-Line Changelog](LbL.changes)
----
## 1.0.x
### 1.1.0.9
(18.10.2018)
[Based on OpenCAD 0.2.4]
*
Fix: Change password error
### 1.1.0.8
(01.10.2018)
[Based on OpenCAD 0.2.4]
...
...
LbL.changes
View file @
4f807189
~ actions/profileActions.php - Fix #29 | Change password bug | OCPHP-401
~ actions/register.php - Fix OCPHP-402
~ actions/dispatchActions.php - AOP not setable after fresh installation
~ index.php - Fix OCPHP-402
~ mdt.php - Fix OCPHP-402
~ oc-functions.php - Dump version 1.1.0.8
\ No newline at end of file
~ actions/profileActions.php - Fix change password error
~ oc-functions.php - Dump version 1.1.0.9
\ No newline at end of file
actions/profileActions.php
View file @
4f807189
...
...
@@ -105,7 +105,7 @@ function changePassword()
die
(
'Could not connect: '
.
$ex
);
}
$result
=
$pdo
->
query
(
"SELECT * FROM users"
)
->
fetchAll
(
PDO
::
FETCH_
NUM
);
$result
=
$pdo
->
query
(
"SELECT * FROM users"
)
->
fetchAll
(
PDO
::
FETCH_
ASSOC
);
if
(
!
$result
)
{
...
...
oc-functions.php
View file @
4f807189
...
...
@@ -132,7 +132,7 @@ function getOpenCADHash()
function
getATVGCADVersion
()
{
$data
[
'version'
]
=
"1.1.0.
8
"
;
$data
[
'version'
]
=
"1.1.0.
9
"
;
$out
=
array
();
exec
(
"git log"
,
$out
);
$data
[
'build'
]
=
substr
(
$out
[
0
],
strlen
(
'commit '
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment