aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-13 02:00:53 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-13 02:00:53 -0700
commitc6267a2cd2e3a731f44df9288ced508ad90c4ca3 (patch)
tree0558c6669ead159b855e9bd8e63bb24cc8da42f3 /mod/profile.php
parent7e16f8cdae597cc8329c3cc9ce769d512ba84085 (diff)
downloadvolse-hubzilla-c6267a2cd2e3a731f44df9288ced508ad90c4ca3.tar.gz
volse-hubzilla-c6267a2cd2e3a731f44df9288ced508ad90c4ca3.tar.bz2
volse-hubzilla-c6267a2cd2e3a731f44df9288ced508ad90c4ca3.zip
turn groups back into numbers
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 37bf04a0c..5a1ac0639 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -170,7 +170,7 @@ function profile_content(&$a) {
$gs = '<<>>'; // should be impossible to match
if(count($groups)) {
foreach($groups as $g)
- $gs .= '|<' . dbesc($g) . '>';
+ $gs .= '|<' . intval($g) . '>';
}
$sql_extra = sprintf(
" AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
@@ -180,8 +180,8 @@ function profile_content(&$a) {
intval($_SESSION['visitor_id']),
intval($_SESSION['visitor_id']),
- $gs,
- $gs
+ dbesc($gs),
+ dbesc($gs)
);
}