diff --git a/README.md b/README.md
index aead259499..ad27e00882 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ Credit: [Convoe](http://www.convoe.com), [Kano](http://www.kano.me), [Manchester
## How can I follow along/contribute?
-* Our feature roadmap is hosted on the project wiki's [Version History / Roadmap](https://github.com/designcreateplay/NodeBB/wiki/Version-History-%26-Roadmap)
+* Our feature roadmap is hosted on the project wiki's [Version History / Roadmap](https://github.com/NodeBB/NodeBB/wiki/Version-History-%26-Roadmap)
* If you are a developer, feel free to check out the source and submit pull requests. We also have a wide array of [plugins](http://community.nodebb.org/category/7/nodebb-plugins) which would be a great starting point for learning the codebase.
* If you are a designer, [NodeBB needs themes](http://community.nodebb.org/category/10/nodebb-themes)! NodeBB's theming system allows extention of the base templates as well as styling via LESS or CSS. NodeBB's base theme utilizes [Bootstrap 3](http://getbootstrap.com/) but themes can choose to use a different framework altogether.
* Please don't forget to **like**, **follow**, and **star our repo**! Join our growing [community](http://community.nodebb.org) to keep up to date with the latest NodeBB development.
@@ -55,4 +55,4 @@ It is important to ensure that your NodeBB and database servers are secured. Bea
## Upgrading NodeBB
-Detailed upgrade instructions are listed in [Upgrading NodeBB](https://github.com/designcreateplay/NodeBB/wiki/Upgrading-NodeBB)
+Detailed upgrade instructions are listed in [Upgrading NodeBB](https://github.com/NodeBB/NodeBB/wiki/Upgrading-NodeBB)
diff --git a/app.js b/app.js
index fddded63db..26cdf378cf 100644
--- a/app.js
+++ b/app.js
@@ -332,7 +332,7 @@ function displayHelp() {
winston.info('Options:');
winston.info(' --help displays this usage information');
winston.info(' --setup configure your environment and setup NodeBB');
- winston.info(' --upgrade upgrade NodeBB, first read: github.com/designcreateplay/NodeBB/wiki/Upgrading-NodeBB');
+ winston.info(' --upgrade upgrade NodeBB, first read: github.com/NodeBB/NodeBB/wiki/Upgrading-NodeBB');
winston.info(' --reset soft resets NodeBB; disables all plugins and restores selected theme to Vanilla');
winston.info(' --start manually start NodeBB (default when no options are given)');
}
diff --git a/nodebb b/nodebb
index 2d09f734db..7399f472ea 100755
--- a/nodebb
+++ b/nodebb
@@ -99,14 +99,14 @@ case "$1" in
dev)
echo "Launching NodeBB in \"development\" mode."
echo "To run the production build of NodeBB, please use \"forever\"."
- echo "More Information: https://github.com/designcreateplay/NodeBB/wiki/How-to-run-NodeBB"
+ echo "More Information: https://github.com/NodeBB/NodeBB/wiki/How-to-run-NodeBB"
NODE_ENV=development "$node" loader --no-daemon "$@"
;;
watch)
echo "Launching NodeBB in \"development\" mode."
echo "To run the production build of NodeBB, please use \"forever\"."
- echo "More Information: https://github.com/designcreateplay/NodeBB/wiki/How-to-run-NodeBB"
+ echo "More Information: https://github.com/NodeBB/NodeBB/wiki/How-to-run-NodeBB"
NODE_ENV=development supervisor -q --ignore public/templates --extensions 'node|js|tpl|less' -- app "$@"
;;
diff --git a/package.json b/package.json
index 8226b165c2..ce6195791b 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",
- "url": "https://github.com/designcreateplay/NodeBB/"
+ "url": "https://github.com/NodeBB/NodeBB/"
},
"main": "app.js",
"scripts": {
@@ -56,7 +56,7 @@
"mocha": "~1.13.0"
},
"bugs": {
- "url": "https://github.com/designcreateplay/NodeBB/issues"
+ "url": "https://github.com/NodeBB/NodeBB/issues"
},
"engines": {
"node": ">=0.8"
diff --git a/public/src/overrides.js b/public/src/overrides.js
index e77371fa71..f3b36e54d2 100644
--- a/public/src/overrides.js
+++ b/public/src/overrides.js
@@ -54,7 +54,7 @@ if ('undefined' !== typeof window) {
})(jQuery || {fn:{}});
- // FIX FOR #1245 - https://github.com/designcreateplay/NodeBB/issues/1245
+ // FIX FOR #1245 - https://github.com/NodeBB/NodeBB/issues/1245
// from http://stackoverflow.com/questions/15931962/bootstrap-dropdown-disappear-with-right-click-on-firefox
// obtain a reference to the original handler
var _clearMenus = $._data(document, "events").click.filter(function (el) {
diff --git a/src/install.js b/src/install.js
index f8a3182a08..ef78d10dba 100644
--- a/src/install.js
+++ b/src/install.js
@@ -418,7 +418,7 @@ function setCopyrightWidget(next) {
db.init(function(err) {
if (!err) {
- db.setObjectField('widgets:global', 'footer', "[{\"widget\":\"html\",\"data\":{\"html\":\"\",\"title\":\"\",\"container\":\"\"}}]", next);
+ db.setObjectField('widgets:global', 'footer', "[{\"widget\":\"html\",\"data\":{\"html\":\"\",\"title\":\"\",\"container\":\"\"}}]", next);
}
});
}
diff --git a/src/upgrade.js b/src/upgrade.js
index 35329511ce..0dcc134de5 100644
--- a/src/upgrade.js
+++ b/src/upgrade.js
@@ -521,7 +521,7 @@ Upgrade.upgrade = function(callback) {
thisSchemaDate = Date.UTC(2014, 3, 31, 12, 30);
if (schemaDate < thisSchemaDate) {
- db.setObjectField('widgets:global', 'footer', "[{\"widget\":\"html\",\"data\":{\"html\":\"\",\"title\":\"\",\"container\":\"\"}}]", function(err) {
+ db.setObjectField('widgets:global', 'footer', "[{\"widget\":\"html\",\"data\":{\"html\":\"\",\"title\":\"\",\"container\":\"\"}}]", function(err) {
if (err) {
winston.error('[2014/3/31] Problem re-adding copyright message into global footer widget');
next();