Created
January 3, 2019 15:57
-
-
Save tfl/f301ece9eb4c718c78c5912969406f5e to your computer and use it in GitHub Desktop.
Untested fix fpr phppgadmin-dev (v7...) which fixes an error where the function tree did not open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/classes/database/Postgres.php b/classes/database/Postgres.php | |
index ee19990f..e823fa7b 100755 | |
--- a/classes/database/Postgres.php | |
+++ b/classes/database/Postgres.php | |
@@ -4184,8 +4184,7 @@ class Postgres extends ADODB_base { | |
INNER JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace | |
INNER JOIN pg_catalog.pg_language pl ON pl.oid = p.prolang | |
LEFT JOIN pg_catalog.pg_user u ON u.usesysid = p.proowner | |
- WHERE NOT p.proisagg | |
- AND {$where} | |
+ WHERE {$where} | |
ORDER BY p.proname, proresult | |
"; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment