Skip to content

Commit

Permalink
Fixed null note import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rossdotparker committed Aug 26, 2019
1 parent dba28c3 commit c313acc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Credentials/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,8 @@
++$count;
$sql[$count][0] = '2.3.01';
$sql[$count][1] = "";

//2.3.02
++$count;
$sql[$count][0] = '2.3.02';
$sql[$count][1] = "";
4 changes: 4 additions & 0 deletions Credentials/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v2.3.02
-------
Fixed null note import issue

v2.3.01
-------
Refactored Breadcrumbs for version >= v17
Expand Down
2 changes: 1 addition & 1 deletion Credentials/import_credentials.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
$users[$userSuccessCount]['title'] = $data[1];
$users[$userSuccessCount]['username2'] = $data[2];
$users[$userSuccessCount]['password'] = $data[3];
$users[$userSuccessCount]['notes'] = $data[4];
$users[$userSuccessCount]['notes'] = (!empty($data[4])) ? $data[4] : '' ;
++$userSuccessCount;
} else {
echo "<div class='error'>";
Expand Down
2 changes: 1 addition & 1 deletion Credentials/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$entryURL = 'credentials.php';
$type = 'Additional';
$category = 'Admin';
$version = '2.3.01';
$version = '2.3.02';
$author = 'Ross Parker';
$url = 'http://rossparker.org';

Expand Down
2 changes: 1 addition & 1 deletion Credentials/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
/**
* Sets version information.
*/
$moduleVersion = '2.3.01';
$moduleVersion = '2.3.02';

0 comments on commit c313acc

Please sign in to comment.