Fixed a variable conflict in mod/xchan.php.
A variable $rr inside the foreachs was used twice. Add translation to mod/xchan.php.
This commit is contained in:
parent
e4859d4bd7
commit
e8b77fbdff
@ -3,14 +3,13 @@
|
|||||||
|
|
||||||
function xchan_content(&$a) {
|
function xchan_content(&$a) {
|
||||||
|
|
||||||
|
$o = '<h3>' . t('Xchan Lookup') . '</h3>';
|
||||||
$o .= '<h3>Xchan Lookup</h3>';
|
|
||||||
|
|
||||||
$o .= '<form action="xchan" method="get">';
|
$o .= '<form action="xchan" method="get">';
|
||||||
$o .= 'Lookup xchan beginning with (or webbie): <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
|
$o .= t('Lookup xchan beginning with (or webbie): ');
|
||||||
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
|
$o .= '<input type="text" style="width:250px;" name="addr" value="' . $_GET['addr'] .'">';
|
||||||
|
$o .= '<input type="submit" name="submit" value="' . t('Submit') .'"></form>';
|
||||||
$o .= '<br /><br />';
|
$o .= '<br><br>';
|
||||||
|
|
||||||
if(x($_GET, 'addr')) {
|
if(x($_GET, 'addr')) {
|
||||||
$addr = trim($_GET['addr']);
|
$addr = trim($_GET['addr']);
|
||||||
@ -22,15 +21,15 @@ function xchan_content(&$a) {
|
|||||||
|
|
||||||
if($r) {
|
if($r) {
|
||||||
foreach($r as $rr) {
|
foreach($r as $rr) {
|
||||||
$o .= str_replace(array("\n"," "),array("<br/>"," "),print_r($rr,true)) . EOL;
|
$o .= str_replace(array("\n", " "), array("<br>", " "), print_r($rr, true)) . EOL;
|
||||||
|
|
||||||
$s = q("select * from hubloc where hubloc_hash like '%s'",
|
$s = q("select * from hubloc where hubloc_hash like '%s'",
|
||||||
dbesc($r[0]['xchan_hash'])
|
dbesc($r[0]['xchan_hash'])
|
||||||
);
|
);
|
||||||
|
|
||||||
if($s) {
|
if($s) {
|
||||||
foreach($s as $rr)
|
foreach($s as $rrr)
|
||||||
$o .= str_replace(array("\n"," "),array("<br/>"," "),print_r($rr,true)) . EOL;
|
$o .= str_replace(array("\n", " "), array("<br>", " "), print_r($rrr, true)) . EOL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user