aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-03-21 15:17:59 +0100
committerMario Vavti <mario@mariovavti.com>2015-03-21 15:17:59 +0100
commit5a1c388d4a3216263d4ec4c0b0dee13e654f20c2 (patch)
treec4400ebca85fb8367e321586728d0f42b412db5b /mod
parent9980645ab8bf061decc36837ceea1dc5ead9f824 (diff)
parent590df06556af29861d00ca2f417051fa2c21a7e6 (diff)
downloadvolse-hubzilla-5a1c388d4a3216263d4ec4c0b0dee13e654f20c2.tar.gz
volse-hubzilla-5a1c388d4a3216263d4ec4c0b0dee13e654f20c2.tar.bz2
volse-hubzilla-5a1c388d4a3216263d4ec4c0b0dee13e654f20c2.zip
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod')
-rw-r--r--mod/rpost.php12
-rw-r--r--mod/siteinfo.php5
2 files changed, 5 insertions, 12 deletions
diff --git a/mod/rpost.php b/mod/rpost.php
index 398d2bf0f..10ae6b8ab 100644
--- a/mod/rpost.php
+++ b/mod/rpost.php
@@ -17,6 +17,7 @@ require_once('include/zot.php');
* f= placeholder, often required
* title= Title of post
* body= Body of post
+ * url= URL which will be parsed and the results appended to the body
* source= Source application
* remote_return= absolute URL to return after posting is finished
* type= choices are 'html' or 'bbcode', default is 'bbcode'
@@ -97,16 +98,6 @@ function rpost_content(&$a) {
'$title' => t('Edit post')
));
-
-// $a->page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array(
-// '$baseurl' => $a->get_baseurl(),
-// '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
-// '$ispublic' => '&nbsp;', // t('Visible to <strong>everybody</strong>'),
-// '$geotag' => $geotag,
-// '$nickname' => $channel['channel_address']
-// ));
-
-
if($_REQUEST['url']) {
$x = z_fetch_url(z_root() . '/parse_url?f=&url=' . urlencode($_REQUEST['url']));
if($x['success'])
@@ -122,7 +113,6 @@ function rpost_content(&$a) {
|| $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
'acl' => populate_acl($channel),
'bang' => '',
-// 'channel_select' => true,
'visitor' => true,
'profile_uid' => local_channel(),
'title' => $_REQUEST['title'],
diff --git a/mod/siteinfo.php b/mod/siteinfo.php
index e6798ce50..2ad9f7cde 100644
--- a/mod/siteinfo.php
+++ b/mod/siteinfo.php
@@ -54,7 +54,10 @@ function siteinfo_init(&$a) {
$version = RED_VERSION;
if(@is_dir('.git') && function_exists('shell_exec')) {
$commit = trim( @shell_exec('git log -1 --format="%h"'));
- $tag = trim( @shell_exec('git describe --tags --abbrev=0'));
+ if(! get_config('system','hidden_tag_siteinfo'))
+ $tag = trim( @shell_exec('git describe --tags --abbrev=0'));
+ else
+ $tag = '';
}
if(! isset($commit) || strlen($commit) > 16)
$commit = '';