Select the types of activity you want to include in your feed.
@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
···801801 // Show stack traces when unhandled exceptions occur, force reloading of
802802 // static resources (skipping the cache), show an error callout if a page
803803 // generated PHP errors, warnings, or notices, force disk reads when
804804- // reloading. This option should not be enabled in production.
804804+ // reloading, and generally make development easier. This option should not
805805+ // be enabled in production.
805806 'phabricator.developer-mode' => false,
806807807808 // When users write comments which have URIs, they'll be automatically linked
···6565 return;
6666 }
67676868+ if (PhabricatorEnv::getEnvConfig('phabricator.developer-mode')) {
6969+ $mode_string = queryfx_one($conn_raw, "SELECT @@sql_mode");
7070+ $modes = explode(',', $mode_string['@@sql_mode']);
7171+ if (!in_array('STRICT_ALL_TABLES', $modes)) {
7272+ $message = pht(
7373+ "The global sql_mode is not set to 'STRICT_ALL_TABLES'. It is ".
7474+ "recommended that you set this mode while developing Phabricator.");
7575+7676+ $this->newIssue('mysql.mode')
7777+ ->setName(pht('MySQL STRICT_ALL_TABLES mode not set.'))
7878+ ->setMessage($message);
7979+ }
8080+ }
8181+6882 $namespace = PhabricatorEnv::getEnvConfig('storage.default-namespace');
69837084 $databases = queryfx_all($conn_raw, 'SHOW DATABASES');