Remove trailing spaces and tabs

This commit is contained in:
Daniel Martí 2013-12-30 17:04:16 +01:00
parent c113371297
commit 0765f14c9d
14 changed files with 142 additions and 142 deletions

View file

@ -15,7 +15,7 @@ class AndroidPermissions
$this->android_strings_file_path = $android_strings_file_path_in;
$this->cache_file_path = $cache_file_path_in;
}
// Returns an associative array with android permissions and data about them
function get_permissions_array() {

View file

@ -93,7 +93,7 @@ class FDroid
if($query_vars['fdcategory'] == 'All categories') {
unset($query_vars['fdcategory']);
}
if($query_vars['fdid']!==null) {
$out.=$this->get_app($query_vars);
} else {
@ -533,7 +533,7 @@ class FDroid
$out.='<form name="categoryform" action="" method="get">';
$out.=$this->makeformdata($query_vars);
$out.='<select name="fdcategory" style="color:#333333;" onChange="document.categoryform.submit();">';
foreach($categories as $category) {
$out.='<option';
@ -542,7 +542,7 @@ class FDroid
$out.='>'.$category.'</option>';
}
$out.='</select>';
$out.='</form>'."\n";
}
else {
@ -820,7 +820,7 @@ function widget_fdroidlatest($args) {
extract($args);
echo $before_widget;
echo $before_title . 'Latest Apps' . $after_title;
$handle = fopen(getenv('DOCUMENT_ROOT').'/repo/latestapps.dat', 'r');
if ($handle) {
while (($buffer = fgets($handle, 4096)) !== false) {
@ -837,7 +837,7 @@ function widget_fdroidlatest($args) {
}
fclose($handle);
}
echo $after_widget;
}