MJS2O8G5b7kRqslp2pMBo changeset

Changeset346661393431 (b)
Parent626266373133 (a)
ab
00<?php
11// Setup Couchbase connected objects
22try {
...
3-  $cb = new Couchbase("127.0.0.1:8091", "Administrator", "asdasd");
3+  $cb = new Couchbase("127.0.0.1:8091");
...
44} catch (ErrorException $e) {
55  die($e->getMessage());
66}
...
1
2
3
4
5
6
7
8
9
10
11
--- Revision 626266373133
+++ Revision 346661393431
@@ -1,7 +1,7 @@
<?php
// Setup Couchbase connected objects
try {
- $cb = new Couchbase("127.0.0.1:8091", "Administrator", "asdasd");
+ $cb = new Couchbase("127.0.0.1:8091");
} catch (ErrorException $e) {
die($e->getMessage());
}