aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2012-01-06 00:42:06 -0800
committerfabrixxm <fabrix.xm@gmail.com>2012-01-06 00:42:06 -0800
commitad02af4e8fe88566ea6255af3fabac6393b1c916 (patch)
treefe66ebfe8ea6a61e2da151766af733a44366c2ff /include
parentcfe8094b458c62cbab0b79dd957c31dbf60a26c4 (diff)
parenta5a6719283bd246e78427cff82aad951a3db310d (diff)
downloadvolse-hubzilla-ad02af4e8fe88566ea6255af3fabac6393b1c916.tar.gz
volse-hubzilla-ad02af4e8fe88566ea6255af3fabac6393b1c916.tar.bz2
volse-hubzilla-ad02af4e8fe88566ea6255af3fabac6393b1c916.zip
Merge pull request #23 from fabrixxm/master
Theme works
Diffstat (limited to 'include')
-rw-r--r--include/config.php12
-rw-r--r--include/conversation.php18
2 files changed, 20 insertions, 10 deletions
diff --git a/include/config.php b/include/config.php
index f565ab117..92694f519 100644
--- a/include/config.php
+++ b/include/config.php
@@ -145,8 +145,9 @@ function get_pconfig($uid,$family, $key, $instore = false) {
);
if(count($ret)) {
- $a->config[$uid][$family][$key] = $ret[0]['v'];
- return $ret[0]['v'];
+ $val = (preg_match("|^a:[0-9]+:{.*}$|", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']);
+ $a->config[$uid][$family][$key] = $val;
+ return $val;
}
else {
$a->config[$uid][$family][$key] = '!<unset>!';
@@ -177,20 +178,23 @@ function set_pconfig($uid,$family,$key,$value) {
global $a;
+ // manage array value
+ $dbvalue = (is_array($value)?serialize($value):$value);
+
if(get_pconfig($uid,$family,$key,true) === false) {
$a->config[$uid][$family][$key] = $value;
$ret = q("INSERT INTO `pconfig` ( `uid`, `cat`, `k`, `v` ) VALUES ( %d, '%s', '%s', '%s' ) ",
intval($uid),
dbesc($family),
dbesc($key),
- dbesc($value)
+ dbesc($dbvalue)
);
if($ret)
return $value;
return $ret;
}
$ret = q("UPDATE `pconfig` SET `v` = '%s' WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
- dbesc($value),
+ dbesc($dbvalue),
intval($uid),
dbesc($family),
dbesc($key)
diff --git a/include/conversation.php b/include/conversation.php
index d4d6a5569..4a53060e3 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -813,8 +813,7 @@ function status_editor($a,$x, $notes_cid = 0) {
'$audurl' => t("Please enter an audio link/URL:"),
'$term' => t('Tag term:'),
'$whereareu' => t('Where are you right now?'),
- '$title' => t('Enter a title for this item'),
- '$addtitle' => t('click here to add a title')
+ '$title' => t('Enter a title for this item')
));
@@ -858,15 +857,24 @@ function status_editor($a,$x, $notes_cid = 0) {
'$action' => 'item',
'$share' => (($x['button']) ? $x['button'] : t('Share')),
'$upload' => t('Upload photo'),
+ '$shortupload' => t('upload photo'),
'$attach' => t('Attach file'),
+ '$shortattach' => t('attach file'),
'$weblink' => t('Insert web link'),
+ '$shortweblink' => t('web link'),
'$video' => t('Insert video link'),
+ '$shortvideo' => t('video link'),
'$audio' => t('Insert audio link'),
+ '$shortaudio' => t('audio link'),
'$setloc' => t('Set your location'),
+ '$shortsetloc' => t('set location'),
'$noloc' => t('Clear browser location'),
- '$title' => t('Set title'),
+ '$shortnoloc' => t('clear location'),
+ '$title' => "",
+ '$placeholdertitle' => t('Set title'),
'$wait' => t('Please wait'),
'$permset' => t('Permission settings'),
+ '$shortpermset' => t('permissions'),
'$ptyp' => (($notes_cid) ? 'note' : 'wall'),
'$content' => '',
'$post_id' => '',
@@ -882,8 +890,6 @@ function status_editor($a,$x, $notes_cid = 0) {
'$acl' => $x['acl'],
'$bang' => $x['bang'],
'$profile_uid' => $x['profile_uid'],
- '$addtitle' => t('click here to add a title')
-
));
return $o;
@@ -958,4 +964,4 @@ function find_thread_parent_index($arr,$x) {
if($v['id'] == $x['parent'])
return $k;
return false;
-} \ No newline at end of file
+}