Skip to content

Commit 047f11b

Browse files
committed
Creating Tag v6.0.0-RC8 at 2020-02-07 - Fixes long forgotten bugs
1 parent 3be9cef commit 047f11b

File tree

226 files changed

+230
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+230
-227
lines changed

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "huasofoundries/phppgadmin6",
3-
"version": "6.0.0-RC7",
3+
"version": "6.0.0-RC8",
44
"description": "Like phpmyadmin but for postgres",
55
"type": "project",
66
"license": [
@@ -47,7 +47,10 @@
4747
},
4848
"scripts": {
4949
"fix_temp_permissions": [
50-
"php -r \"chmod( __DIR__ . '/temp', 0777);\""
50+
"php -r \"chmod( __DIR__ . '/temp', 0777);\"",
51+
"php -r \"chmod( __DIR__ . '/temp/logs', 0777);\"",
52+
"php -r \"chmod( __DIR__ . '/temp/sessions', 0777);\"",
53+
"php -r \"chmod( __DIR__ . '/temp/twigcache', 0777);\""
5154
],
5255
"clear": "@fix_temp_permissions",
5356
"post-install-cmd": "@clear_temp_folder",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
require_once __DIR__.'/src/lib.inc.php';

src/classes/ADONewConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/ADORecordSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/ADOdbException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/ArrayRecordSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/ContainerUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/Misc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

src/classes/PluginManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* PHPPgAdmin v6.0.0-RC7
4+
* PHPPgAdmin v6.0.0-RC8
55
*/
66

77
namespace PHPPgAdmin;

0 commit comments

Comments
 (0)