Skip to content

Commit 84ce033

Browse files
author
Raymond Benc
committed
Fixing mising internal_id for apps
1 parent 74e37a5 commit 84ce033

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PF.Base/include/checksum/md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
b41e07ec10d99cc5f9a83db7c3488e6e composer.lock
2-
6970500f9e26838f402565080e4ae7fe include/checksum/md5
2+
fa1d69305f1f8776af6988b424c9a135 include/checksum/md5
33
d7f7e3d45fa8602bec28e7a51c902110 include/cron/exec.php
44
68b329da9893e34099c7d8ad5cb9c940 include/cron/index.html
55
68b329da9893e34099c7d8ad5cb9c940 include/index.html

PF.Src/Core/App/Object.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct($keys) {
6060
*/
6161
if (file_exists($file)) {
6262
$this->auth = (object) require($file);
63-
$this->internal_id = $this->auth->internal_id;
63+
$this->internal_id = (isset($this->auth->internal_id) ? $this->auth->internal_id : 0);
6464
}
6565
}
6666
}

0 commit comments

Comments
 (0)