From 38e657a5d5791919937ca8e0deb2460aaa103883 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 23 Jul 2016 22:02:21 +0200 Subject: removing owncloud references and updating links --- .gitignore | 1 - CONTRIBUTING.md | 83 +++++----------------------------- Makefile | 12 ++--- README.md | 38 ++++++++-------- appinfo/info.xml | 11 ++--- composer.json | 11 ++--- css/app.css | 2 +- css/content.css | 2 +- css/explore.css | 2 +- css/navigation.css | 2 +- css/settings.css | 4 +- docs/explore/README.md | 20 ++++---- docs/externalapi/Legacy.md | 8 ++-- docs/plugins/README.md | 2 +- issue_template.md | 6 +-- js/bower.json | 6 +-- js/package.json | 10 ++-- lib/Config/Config.php | 2 +- lib/Service/FeedService.php | 2 +- templates/admin.php | 4 +- templates/part.content.cronwarning.php | 4 +- templates/part.content.explore.php | 2 +- templates/part.settings.php | 4 +- tests/Unit/Service/FeedServiceTest.php | 8 ++-- 24 files changed, 91 insertions(+), 155 deletions(-) diff --git a/.gitignore b/.gitignore index 1adeb65fe..c574792b9 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ PKG-INFO *~ __pycache__ bin/updater/dist/ -owncloud_news_updater.egg-info bin/updater/build # just sane ignores diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8140046e5..f0cd60db9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,10 +20,10 @@ This section is split into two section: * Get the latest version of the News app * Disable all browser add-ons to make sure that it's not a plugin's fault (adblockers!) * Clear your PHP opcode cache if you use any by restarting your webserver. This affects any version of PHP >=5.5 -* [Check if they have already been reported](https://github.com/owncloud/news/issues?state=open) -* [Check if your problem is covered in the FAQ section](https://github.com/owncloud/news#faq) +* [Check if they have already been reported](https://github.com/nextcloud/news/issues?state=open) +* [Check if your problem is covered in the FAQ section](https://github.com/nextcloud/news#faq) -If you are not able to add a feed because its XML *does not validate* (see [this issue](https://github.com/owncloud/news/issues/133) for an example), +If you are not able to add a feed because its XML *does not validate* (see [this issue](https://github.com/nextcloud/news/issues/133) for an example), check if: * It is a valid RSS by running it through the [W3C validator](http://validator.w3.org/feed/) @@ -33,7 +33,7 @@ check if: ### When reporting bugs * Enable debug mode in your **config/config.php**: - * ownCloud >=8.2: Add the **debug** attribute to config array (if not already present) and set it to **true**: + * Add the **debug** attribute to config array (if not already present) and set it to **true**: ```php true, ); ``` - * ownCloud < 8.2: Add **DEFINE('DEBUG', true);** at the end of the file - ```php - # @copyright Bernhard Posselt 2016 -# Generic Makefile for building and packaging an ownCloud app which uses npm and +# Generic Makefile for building and packaging a Nextcloud app which uses npm and # Composer. # # Dependencies: @@ -52,12 +52,12 @@ composer=$(shell which composer 2> /dev/null) # code signing # assumes the following: -# * the app is inside the owncloud/apps folder -# * the private key is located in ~/.owncloud/news.key -# * the certificate is located in ~/.owncloud/news.crt +# * the app is inside the nextcloud/apps folder +# * the private key is located in ~/.nextcloud/news.key +# * the certificate is located in ~/.nextcloud/news.crt occ=$(CURDIR)/../../occ -private_key=$(HOME)/.owncloud/$(app_name).key -certificate=$(HOME)/.owncloud/$(app_name).crt +private_key=$(HOME)/.nextcloud/$(app_name).key +certificate=$(HOME)/.nextcloud/$(app_name).crt sign=php -f $(occ) integrity:sign-app --privateKey="$(private_key)" --certificate="$(certificate)" sign_skip_msg="Skipping signing, either no key and certificate found in $(private_key) and $(certificate) or occ can not be found at $(occ)" ifneq (,$(wildcard $(private_key))) diff --git a/README.md b/README.md index f0e94fb4b..432706aa4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The News app is an RSS/Atom feed aggregator. It offers a [RESTful API](https://github.com/nextcloud/news/tree/master/docs/externalapi) for app developers. The source code is [available on GitHub](https://github.com/nextcloud/news) -![](https://apps.owncloud.com/CONTENT/content-pre1/168040-1.png) +![](https://raw.githubusercontent.com/nextcloud/news/master/screenshots/1.png) ## Maintainers @@ -63,9 +63,9 @@ Please read the [appropriate section in the contributing notices](https://github ### Before you install/update the News app Before you install the app do the following: -* Check that your **owncloud/data/** directory is owned by your webserver user and that it is write/readable +* Check that your **nextcloud/data/** directory is owned by your web server user and that it is write/readable * Check that your installation fulfills the [requirements listed in the README section](https://github.com/nextcloud/news#dependencies) -* [Set up Nextcloud Background Jobs](https://doc.owncloud.org/server/8.0/admin_manual/configuration_server/background_jobs_configuration.html) to enable feed updates. A recommended timespan for feed updates is 15-30 Minutes. +* [Set up Nextcloud Background Jobs](https://docs.nextcloud.org/server/9/admin_manual/configuration_server/background_jobs_configuration.html#cron) to enable feed updates. A recommended timespan for feed updates is 15-30 Minutes. Then proceed to install the app either from an archive (zip/tar.gz) or clone it from the repository using git @@ -75,23 +75,23 @@ This is the easiest solution: Simply go the the apps page and enable the News ap ### Installing from archive * Go to the [Nextcloud News GitHub releases page](https://github.com/nextcloud/news/releases) and download the latest release/archive to your server * Starting with 8.0.0, there are two different releases: **news.tar.gz** and **Source code**. The first one requires no additional steps, the second one requires you to install the dependencies and compile the JavaScript. Choose the first one if you don't want to work on the code. If you want to install a version prior to 8.0.0, choose the **Source code** download. -* On your server, check if there is a folder called **owncloud/apps/news**. If there is one, delete it. -* Extract the downloaded archive to the **owncloud/apps/** folder. -* Remove the version from the extracted folder (e.g. rename **owncloud/apps/news-4.0.3/** to **owncloud/apps/news/** -* If you are a version greater than or equal to 8.0.0 and downloaded the **Source code** zip or tar.gz, you need to install the JavaScript and PHP dependencies and compile the JavaScript first. On your terminal, change into the **owncloud/apps/news/** directory and run the following command (requires node >5.6, npm, curl, make and which): +* On your server, check if there is a folder called **nextcloud/apps/news**. If there is one, delete it. +* Extract the downloaded archive to the **nextcloud/apps/** folder. +* Remove the version from the extracted folder (e.g. rename **nextcloud/apps/news-4.0.3/** to **nextcloud/apps/news/** +* If you are a version greater than or equal to 8.0.0 and downloaded the **Source code** zip or tar.gz, you need to install the JavaScript and PHP dependencies and compile the JavaScript first. On your terminal, change into the **nextcloud/apps/news/** directory and run the following command (requires node >5.6, npm, curl, make and which): sudo -u www-data make # www-data might vary depending on your distribution -* Finally make sure that the **owncloud/apps/news** directory is owned by the web server user +* Finally make sure that the **nextcloud/apps/news** directory is owned by the web server user - sudo chown -R www-data:www-data owncloud/apps/news # www-data:www-data might vary depending on your distribution + sudo chown -R www-data:www-data nextcloud/apps/news # www-data:www-data might vary depending on your distribution * Activate the **News** app in the apps menu ### Installing from Git (development version) * The master branch will always be stable in conjunction with the latest master branch from Nextcloud * JavaScript and PHP libraries are not included anymore since 8.0.0 and will require you to run **make** after updating/installing the app -* In your terminal go into the **owncloud/apps/** directory and then run the following command: +* In your terminal go into the **nextcloud/apps/** directory and then run the following command: git clone https://github.com/nextcloud/news.git cd news @@ -112,7 +112,7 @@ This is the easiest solution: Simply go the the apps page and enable the News ap * Activate the **News** app in the apps menu -To update the News app use change into the **owncloud/apps/news/** directory using your terminal and then run: +To update the News app use change into the **nextcloud/apps/news/** directory using your terminal and then run: git pull --rebase origin master make @@ -178,7 +178,7 @@ The exception name itself will give you a hint about what is wrong: One reason for this error could be old files which were not overwritten properly when the app was upgraded. Make sure that all files match the files in the release archive! Most of the time however this is caused by users trying to downgrade (**not supported!!!**) or by failed/timed out database migrations. To prevent future timeouts use - php -f owncloud/occ upgrade + php -f nextcloud/occ upgrade instead of clicking the upgrade button on the web interface. @@ -230,7 +230,7 @@ Some hints: This is very often caused by missing or old files, e.g. by failing to upload all of the News app' files or errors during installation. Before you report a bug, please recheck if all files from the archive are in place and accessible. ### How do I reset the News app -Delete the folder **owncloud/apps/news/** and **owncloud/data/news/**, then connect to your database and run the following commands where **oc\_** is your table prefix (defaults to oc\_) +Delete the folder **nextcloud/apps/news/** and **nextcloud/data/news/**, then connect to your database and run the following commands where **oc\_** is your table prefix (defaults to oc\_) ```sql DELETE FROM oc_appconfig WHERE appid = 'news'; @@ -241,7 +241,7 @@ DROP TABLE oc_news_folders; ### App is stuck in maintenance mode after failed update -Check the **owncloud/data/owncloud.log** for hints why it failed. After the issues are fixed, turn off the maintenance mode by editing your **owncloud/config/config.php** by setting the **maintenance** key to false: +Check the **nextcloud/data/owncloud.log** for hints why it failed. After the issues are fixed, turn off the maintenance mode by editing your **nextcloud/config/config.php** by setting the **maintenance** key to false: "maintenance" => false, @@ -249,18 +249,18 @@ Check the **owncloud/data/owncloud.log** for hints why it failed. After the issu Feeds can be updated using Nextcloud's system cron or any program that implements the [News app's updater API](https://github.com/nextcloud/news/tree/master/docs/externalapi), most notably [Nextcloud News Updater](https://github.com/nextcloud/news-updater). **The feed update is not run in Webcron and AJAX cron mode!** System Cron: -* Check if the config.ini in **owncloud/data/news/config/config.ini** contains **useCronUpdates = true** +* Check if the config.ini in **nextcloud/data/news/config/config.ini** contains **useCronUpdates = true** * Check if you are using the system cron (Cron) setting on the admin page. AJAX and Web cron will not update feeds * Check if the cronjob exists with **crontab -u www-data -e** (replace www-data with your httpd user) * Check the file permissions of the **cron.php** file and if **www-data** (or whatever your httpd user is called like) can read and execute that script -* Check if you can execute the cron with **sudo -u www-data php -f owncloud/cron.php** (replace www-data with your httpd user) +* Check if you can execute the cron with **sudo -u www-data php -f nextcloud/cron.php** (replace www-data with your httpd user) * Check your **data/owncloud.log** for errors * Check if the cronjob is ever executed by placing an **error_log('updating');** in the [background job file](https://github.com/nextcloud/news/blob/master/cron/updater.php#L28). If the cronjob runs, there should be an updating log statement in your httpd log. * If there is no **updating** statement in your logs check if your cronjob is executed by executing a different script * If your cron works fine but Nextcloud's cronjobs are never executed, file a bug in [core](https://github.com/nextcloud/core/) [Nextcloud News Updater](https://github.com/nextcloud/news-updater): -* Check if the config.ini in **owncloud/data/news/config/config.ini** contains **useCronUpdates = false** +* Check if the config.ini in **nextcloud/data/news/config/config.ini** contains **useCronUpdates = false** * Start the updater in loglevel info mode and check if the feed update urls are polled, e.g.: nextcloud_news_updater --loglevel info -c /path/to/config.ini @@ -282,13 +282,13 @@ If you do not have control over the chosen feed, you should [download the certif By appending **?subscribe_to=SOME_URL** to your News app URL, you can launch the News app with a pre-filled URL, e.g.: - https://yourdomain.com/owncloud/index.php/apps/news?subscribe_to=https://github.com/nextcloud/news/releases + https://yourdomain.com/nextcloud/index.php/apps/news?subscribe_to=https://github.com/nextcloud/news/releases Configuration ------------- -All configuration values are set inside **owncloud/data/news/config/config.ini** and can be edited in the admin panel. +All configuration values are set inside **nextcloud/data/news/config/config.ini** and can be edited in the admin panel. The configuration is in **INI** format and looks like this: diff --git a/appinfo/info.xml b/appinfo/info.xml index bf73ed6d4..c0432a0de 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -10,14 +10,13 @@ Jan-Christoph Borchardt News - https://github.com/owncloud/news/wiki#user-documentation - https://github.com/owncloud/news#readme - https://github.com/owncloud/news/wiki#developer-documentation + https://github.com/nextcloud/news#readme + https://github.com/nextcloud/news/tree/master/docs multimedia - https://github.com/owncloud/news - https://github.com/owncloud/news/issues - https://github.com/owncloud/news.git + https://github.com/nextcloud/news + https://github.com/nextcloud/news/issues + https://github.com/nextcloud/news.git https://help.nextcloud.com/t/news-app-discussion https://raw.githubusercontent.com/nextcloud/news/master/screenshots/1.png https://raw.githubusercontent.com/nextcloud/news/master/screenshots/2.png diff --git a/composer.json b/composer.json index c8954a867..155867c07 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "type": "project", "license": "AGPL-3.0", - "description": "An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory", - "homepage": "https://github.com/owncloud/news", + "description": "An RSS/Atom feed reader. Requires Nextcloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory", + "homepage": "https://github.com/nextcloud/news", "authors": [ { "name": "Bernhard Posselt", @@ -24,10 +24,9 @@ } ], "support": { - "irc": "irc://irc.freenode.org/owncloud-news", - "issues": "https://github.com/owncloud/news/issues", - "wiki": "https://github.com/owncloud/news/wiki", - "source": "https://github.com/owncloud/news/" + "irc": "irc://irc.freenode.org/nextcloud-news", + "issues": "https://github.com/nextcloud/news/issues", + "source": "https://github.com/nextcloud/news/" }, "require": { "ezyang/htmlpurifier": "4.7", diff --git a/css/app.css b/css/app.css index e1732a7fd..229cee81a 100644 --- a/css/app.css +++ b/css/app.css @@ -1,5 +1,5 @@ /** - * ownCloud - News + * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. diff --git a/css/content.css b/css/content.css index dfadad590..aebcb6995 100644 --- a/css/content.css +++ b/css/content.css @@ -1,5 +1,5 @@ /** - * ownCloud - News + * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. diff --git a/css/explore.css b/css/explore.css index 6b24d1035..1cff41ce8 100644 --- a/css/explore.css +++ b/css/explore.css @@ -1,5 +1,5 @@ /** - * ownCloud - News + * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. diff --git a/css/navigation.css b/css/navigation.css index d5ea11d7f..63934af1f 100644 --- a/css/navigation.css +++ b/css/navigation.css @@ -1,5 +1,5 @@ -/** - * ownCloud - News + * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. diff --git a/css/settings.css b/css/settings.css index fc9158b36..74e9ebf28 100644 --- a/css/settings.css +++ b/css/settings.css @@ -1,5 +1,5 @@ /** - * ownCloud - News + * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. @@ -42,7 +42,7 @@ #app-settings-content label input[type="checkbox"] { margin-left: -18px; - max-width: 16px; + max-width: 16px; } .button-icon-label { diff --git a/docs/explore/README.md b/docs/explore/README.md index 37b449544..c377e343b 100644 --- a/docs/explore/README.md +++ b/docs/explore/README.md @@ -2,7 +2,7 @@ The News app uses a JSON format to display the feeds in the explore feed section. -The feeds are stored in a JSON file in the [explore](https://github.com/nextcloud/news/tree/master/explore/feeds) folder and are localized based on their filename, meaning: feeds.en.json will only be shown for English localized Nextcloud installations, feeds.de.json only for German installations. If no other localization exists, the feeds.en.json will be taken. +The feeds are stored in a JSON file in the [explore](https://github.com/nextcloud/news/tree/master/lib/Explore/feeds) folder and are localized based on their filename, meaning: feeds.en.json will only be shown for English localized Nextcloud installations, feeds.de.json only for German installations. If no other localization exists, the feeds.en.json will be taken. You can also provide your own explore service. @@ -11,16 +11,14 @@ You can also provide your own explore service. The file has the following format: ```js { - "Tech": [ // category - { - "title": "ownCloud Planet", - "url": "http://owncloud.org/news/", // link to the page so the user can view it - "feed": "http://owncloud.org/feed/", // link to the exact feed location so we can test if the user uses it already - "description": "ownCloud Planet is a feed aggregator", - "votes": 3121, // the higher the vote count, the further up the entry will appear - "favicon": "http://owncloud.org/wp-content/themes/owncloudorgnew/assets/img/common/favicon.png", // optional - }, // etc - ] + "Nextcloud": [{ // category + "title": "Nextcloud Planet", + "favicon": "https://nextcloud.com/contribook/main/images/nextcloud/100.png", + "url": "https://nextcloud.com/news/", + "feed": "https://nextcloud.com/feed/", + "description": "Nextcloud Planet is a blog feed aggregator", + "votes": 1000 + }], } ``` diff --git a/docs/externalapi/Legacy.md b/docs/externalapi/Legacy.md index 6b4afc2c3..d376d9593 100644 --- a/docs/externalapi/Legacy.md +++ b/docs/externalapi/Legacy.md @@ -642,7 +642,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar **New in 8.1.0**: The console command for achieving the same result is: - php -f owncloud/occ news:updater:before-update + php -f nextcloud/occ news:updater:before-update ## Get feed ids and usernames for all feeds @@ -665,7 +665,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar **New in 8.1.0**: The console command for achieving the same result is: - php -f owncloud/occ news:updater:all-feeds + php -f nextcloud/occ news:updater:all-feeds ## Trigger a feed update @@ -687,7 +687,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar **New in 8.1.0**: The console command for achieving the same result is: - php -f owncloud/occ news:updater:update-feed 3 john + php -f nextcloud/occ news:updater:update-feed 3 john ## Trigger cleanup after update This is used to clean up the database. It removes old read articles which are not starred @@ -700,7 +700,7 @@ This is used to clean up the database. It removes old read articles which are no **New in 8.1.0**: The console command for achieving the same result is: - php -f owncloud/occ news:updater:after-update + php -f nextcloud/occ news:updater:after-update # Version diff --git a/docs/plugins/README.md b/docs/plugins/README.md index 4116de3d7..814dc402f 100644 --- a/docs/plugins/README.md +++ b/docs/plugins/README.md @@ -8,7 +8,7 @@ There are essentially three different use cases for plugins: * Dropping in additional CSS or JavaScript ## The Basics -Whatever plugin you want to create, you first need to create a basic structure. A plugin is basically just an app so you can take advantage of the full [Nextcloud app API](https://doc.owncloud.org/server/9.0/developer_manual/app/index.html). If you want you can [take a look at the developer docs](https://doc.owncloud.org/server/9.0/developer_manual/app/index.html) or [dig into the tutorial](http://doc.owncloud.org/server/9.0/developer_manual/app/appframework/tutorial.html). +Whatever plugin you want to create, you first need to create a basic structure. A plugin is basically just an app so you can take advantage of the full [Nextcloud app API](https://docs.nextcloud.org/server/9/developer_manual/app/index.html). If you want you can [take a look at the developer docs](https://docs.nextcloud.org/server/9/developer_manual/app/index.html) or [dig into the tutorial](https://docs.nextcloud.org/server/9/developer_manual/app/tutorial.html). However if you just want to start slow, the full process is described below. diff --git a/issue_template.md b/issue_template.md index 9fd2caf33..572e506c9 100644 --- a/issue_template.md +++ b/issue_template.md @@ -2,7 +2,7 @@ Read and tick the following checkbox after you have created the issue or place an x inside the brackets ;) -* [ ] I have read the [CONTRIBUTING.md](https://github.com/owncloud/news/blob/master/CONTRIBUTING.md) and followed the provided tips +* [ ] I have read the [CONTRIBUTING.md](https://github.com/nextcloud/news/blob/master/CONTRIBUTING.md) and followed the provided tips ## Explain the Problem @@ -16,13 +16,13 @@ Explain what you did to encounter the issue ## System Information * News app version: -* ownCloud version: +* Nextcloud version: * PHP version: * Database and version: * Browser and version: * Distribution and version: -## Contents of owncloud/data/owncloud.log +## Contents of nextcloud/data/owncloud.log ```json diff --git a/js/bower.json b/js/bower.json index c117e7e3c..07eaf1f20 100644 --- a/js/bower.json +++ b/js/bower.json @@ -1,6 +1,6 @@ { - "name": "owncloud-news", - "homepage": "https://github.com/owncloud/news", + "name": "nextcloud-news", + "homepage": "https://github.com/nextcloud/news", "authors": [ "Bernhard Posselt " ], @@ -8,7 +8,7 @@ "keywords": [ "rss", "atom", - "owncloud", + "nextcloud", "feed", "reader", "app" diff --git a/js/package.json b/js/package.json index 4a0e56d14..73abb1663 100644 --- a/js/package.json +++ b/js/package.json @@ -1,5 +1,5 @@ { - "name": "owncloud-news", + "name": "nextcloud-news", "description": "An RSS/Atom feed reader", "main": "build/app.min.js", "scripts": { @@ -9,26 +9,26 @@ }, "repository": { "type": "git", - "url": "https://github.com/owncloud/news" + "url": "https://github.com/nextcloud/news" }, "keywords": [ "rss", "atom", "feed", "reader", - "owncloud", + "nextcloud", "app" ], "author": "Bernhard Posselt", "license": "AGPL-3.0", "bugs": { - "url": "https://github.com/owncloud/news/issues" + "url": "https://github.com/nextcloud/news/issues" }, "engines": { "node": ">=6" }, "private": true, - "homepage": "https://github.com/owncloud/news", + "homepage": "https://github.com/nextcloud/news", "devDependencies": { "bower": "~1.7.9", "gulp": "~3.9.1", diff --git a/lib/Config/Config.php b/lib/Config/Config.php index 6397f2c92..c8f5844c3 100644 --- a/lib/Config/Config.php +++ b/lib/Config/Config.php @@ -27,7 +27,7 @@ class Config { private $autoPurgeCount; // number of allowed unread articles per feed private $maxRedirects; // seconds private $feedFetcherTimeout; // seconds - private $useCronUpdates; // turn off updates run by owncloud cronjob + private $useCronUpdates; // turn off updates run by the cron private $logger; private $loggerParams; private $maxSize; diff --git a/lib/Service/FeedService.php b/lib/Service/FeedService.php index be4750721..c1c1aa64a 100644 --- a/lib/Service/FeedService.php +++ b/lib/Service/FeedService.php @@ -299,7 +299,7 @@ class FeedService extends Service { * @return Feed if one had to be created for nonexistent feeds */ public function importArticles($json, $userId) { - $url = 'http://owncloud/nofeed'; + $url = 'http://nextcloud/nofeed'; $urlHash = md5($url); // build assoc array for fast access diff --git a/templates/admin.php b/templates/admin.php index d0b7c26b8..cfa9d47f6 100644 --- a/templates/admin.php +++ b/templates/admin.php @@ -9,7 +9,7 @@ style('news', 'admin');

>

@@ -118,7 +118,7 @@ style('news', 'admin'); 'input empty' )); ?>. - t( + t( 'For more information check the Wiki' )); ?>

diff --git a/templates/part.content.cronwarning.php b/templates/part.content.cronwarning.php index 4e3222812..62052b331 100644 --- a/templates/part.content.cronwarning.php +++ b/templates/part.content.cronwarning.php @@ -3,7 +3,7 @@

t('Ajax or Web cron mode detected! Your feeds will not be updated!')); ?>