From 1927a0c3acafecf5a88be08c64b70eb375760668 Mon Sep 17 00:00:00 2001 From: Edmar Moretti Date: Wed, 9 Sep 2015 23:36:53 +0000 Subject: [PATCH] Correções em ferramentas --- css/geral.css | 7 +++++++ ferramentas/buscafotos/funcoes.php | 2 +- ferramentas/buscafotos/index.js | 13 ++++++------- pacotes/phpflickr/phpFlickr.php | 2 +- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/css/geral.css b/css/geral.css index 5690fdb..226b8ba 100644 --- a/css/geral.css +++ b/css/geral.css @@ -398,6 +398,13 @@ legend { cursor: pointer; } +.paragrafo input[type=radio] { + position: relative; + top: 3px; + border: 0px solid white; + cursor: pointer; +} + .lista td { border: 0px solid rgb(240, 240, 240); border-left: 0px; diff --git a/ferramentas/buscafotos/funcoes.php b/ferramentas/buscafotos/funcoes.php index e471ea7..80a0365 100644 --- a/ferramentas/buscafotos/funcoes.php +++ b/ferramentas/buscafotos/funcoes.php @@ -24,7 +24,7 @@ function listafotosflickr() if ($ai != "") $ai = strtotime("1 Jan ".$ai);// echo strtotime("10 September 2000") if($af != "") - $af = strtotime("30 Dec ".$af); + $af = strtotime("31 Dec ".$af); $f = new phpFlickr($key); $recent = @$f->photos_search(array("page"=>$page,"extras"=>"geo","accuracy"=>"11","min_upload_date"=>$ai,"max_upload_date"=>$af,"text"=>$texto,"bbox"=>$ret,"privacy_filter"=>"1")); if(!$recent){$recent = "";} diff --git a/ferramentas/buscafotos/index.js b/ferramentas/buscafotos/index.js index 753812b..863eb90 100644 --- a/ferramentas/buscafotos/index.js +++ b/ferramentas/buscafotos/index.js @@ -146,15 +146,14 @@ i3GEOF.buscaFotos = { ins += $trad('maxRegistros',i3GEOF.buscaFotos.dicionario); ins += $trad('ajudaAno',i3GEOF.buscaFotos.dicionario); ins += '

'+$trad('texto',i3GEOF.buscaFotos.dicionario)+':

'; - ins += '

'+$trad('anoInicial',i3GEOF.buscaFotos.dicionario)+':

'; - ins += '

'+$trad('anoFinal',i3GEOF.buscaFotos.dicionario)+':



'; + ins += '

'+$trad('anoInicial',i3GEOF.buscaFotos.dicionario)+':

'; + ins += '

'+$trad('anoFinal',i3GEOF.buscaFotos.dicionario)+':



'; ins += ' '; ins += ' '; - ins += '
'; - ins += '

'+$trad('servidores',i3GEOF.buscaFotos.dicionario)+':'; - ins += ' Flickr'; - ins += ' Panoramio'; - ins += ' Locr'; + ins += '

'; + ins += ' '; + ins += ' '; + ins += ' '; ins += '
'; ins += '

'; ins += '

'; diff --git a/pacotes/phpflickr/phpFlickr.php b/pacotes/phpflickr/phpFlickr.php index 6776d13..8a48b8b 100644 --- a/pacotes/phpflickr/phpFlickr.php +++ b/pacotes/phpflickr/phpFlickr.php @@ -44,7 +44,7 @@ ini_set('include_path', ini_get('include_path') . $path_delimiter . dirname(__FI class phpFlickr { var $api_key; var $secret; - var $REST = 'http://api.flickr.com/services/rest/'; + var $REST = 'https://api.flickr.com/services/rest/'; var $Upload = 'http://api.flickr.com/services/upload/'; var $Replace = 'http://api.flickr.com/services/replace/'; var $req; -- libgit2 0.21.2