@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix variable reference

Summary: What do you think this is, PHP?

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11361

+7 -7
+6 -6
resources/celerity/map.php
··· 8 8 return array( 9 9 'names' => array( 10 10 'core.pkg.css' => '60a6d241', 11 - 'core.pkg.js' => '61af8961', 11 + 'core.pkg.js' => '3db1b544', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => '8af45893', 14 14 'differential.pkg.js' => 'dad3622f', ··· 201 201 'rsrc/externals/javelin/lib/Router.js' => '29274e2b', 202 202 'rsrc/externals/javelin/lib/URI.js' => '6eff08aa', 203 203 'rsrc/externals/javelin/lib/Vector.js' => 'cc1bd0b0', 204 - 'rsrc/externals/javelin/lib/WebSocket.js' => '897b80bf', 204 + 'rsrc/externals/javelin/lib/WebSocket.js' => '16d40bb9', 205 205 'rsrc/externals/javelin/lib/Workflow.js' => 'd149e002', 206 206 'rsrc/externals/javelin/lib/__tests__/Cookie.js' => '5ed109e8', 207 207 'rsrc/externals/javelin/lib/__tests__/DOM.js' => 'c984504b', ··· 687 687 'javelin-view-interpreter' => '0c33c1a0', 688 688 'javelin-view-renderer' => '6c2b09a2', 689 689 'javelin-view-visitor' => 'efe49472', 690 - 'javelin-websocket' => '897b80bf', 690 + 'javelin-websocket' => '16d40bb9', 691 691 'javelin-workflow' => 'd149e002', 692 692 'lightbox-attachment-css' => '7acac05d', 693 693 'maniphest-batch-editor' => '8f380ebc', ··· 951 951 'javelin-request', 952 952 'javelin-util', 953 953 ), 954 + '16d40bb9' => array( 955 + 'javelin-install', 956 + ), 954 957 '1ae869f2' => array( 955 958 'javelin-install', 956 959 'javelin-util', ··· 1391 1394 'javelin-view-html', 1392 1395 'javelin-view-interpreter', 1393 1396 'javelin-view-renderer', 1394 - ), 1395 - '897b80bf' => array( 1396 - 'javelin-install', 1397 1397 ), 1398 1398 '8a41885b' => array( 1399 1399 'javelin-install',
+1 -1
webroot/rsrc/externals/javelin/lib/WebSocket.js
··· 96 96 * Close the connection. 97 97 */ 98 98 close: function() { 99 - if (!$this._isOpen) { 99 + if (!this._isOpen) { 100 100 return; 101 101 } 102 102 this._shouldClose = true;