1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00

OWNCLOUD_URL-parameter out of config.php-dist

Comment in plugins/owncloud/owncloud.php
This commit is contained in:
Thomas Renard 2012-12-27 13:35:24 +01:00
parent a98cd5c526
commit 741ff8f405
2 changed files with 6 additions and 5 deletions

View File

@ -176,11 +176,6 @@
// Displays an URL for users to provide feedback or comments regarding
// this instance of tt-rss. Can lead to a forum, contact email, etc.
define('OWNCLOUD_URL', '');
// owncloud-plugin:
// This is the base url of your owncloud server as called from the browser
// Actually this is a server global parameter only
define('CONFIG_VERSION', 26);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).

View File

@ -1,4 +1,10 @@
<?php
// This plugin creates ReadLater bookmarks in your owncloud.
// The plugin needs a
// define('OWNCLOUD_URL','http(s)://your.serv.er/owncloud');
// in your config.php. The parameter is actually global. user_pref
// with editable parameter in future versions.
require_once "config.php";
class OwnCloud extends Plugin {