mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 09:32:15 +09:00
Remove unnecessary count() in widget controllre
This commit is contained in:
parent
2c48e345d1
commit
2f99d71f21
1 changed files with 2 additions and 2 deletions
|
|
@ -337,9 +337,9 @@ class widgetController extends widget
|
||||||
$sequence = sha1(json_encode($args));
|
$sequence = sha1(json_encode($args));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(count($args))
|
foreach($args as $k => $v)
|
||||||
{
|
{
|
||||||
foreach($args as $k => $v) $args->{$k} = urldecode($v);
|
$args->{$k} = urldecode($v);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($lang_list as $lang_type => $val)
|
foreach($lang_list as $lang_type => $val)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue