Commit e046e5f7bd79918bcb9c550797e9718275760f4e

Authored by Edmar Moretti
1 parent a5775e41

Atualização da documentação

Showing 2 changed files with 16 additions and 1 deletions   Show diff stats
admin/admin.db
No preview for this file type
classesphp/wscliente.php
... ... @@ -25,7 +25,7 @@ Este programa é distribuído na expectativa de que seja útil
25 25 porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita
26 26 de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA.
27 27 Consulte a Licença Pública Geral do GNU para mais detalhes.
28   -Você deve ter recebido uma cópia da Licença Pública Geral do
  28 +Você deve ter recebido uma copia da Licença Pública Geral do
29 29 GNU junto com este programa; se não, escreva para a
30 30 Free Software Foundation, Inc., no endereço
31 31 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
... ... @@ -213,6 +213,9 @@ if ($funcao == "dadosws")
213 213 {
214 214 $cp->register('dadosWS');
215 215 $cp->start();
  216 + if(ob_get_contents ()){
  217 + ob_end_clean();
  218 + }
216 219 $cp->return_data();
217 220 exit;
218 221 }
... ... @@ -285,6 +288,9 @@ if ($funcao == "parfuncoesws")
285 288 {
286 289 $cp->register('parFuncoesws');
287 290 $cp->start();
  291 + if(ob_get_contents ()){
  292 + ob_end_clean();
  293 + }
288 294 $cp->return_data();
289 295 exit;
290 296 }
... ... @@ -364,6 +370,9 @@ if ($funcao == "listaRSSws")
364 370 {
365 371 $cp->register('listaRSSws');
366 372 $cp->start();
  373 + if(ob_get_contents ()){
  374 + ob_end_clean();
  375 + }
367 376 $cp->return_data();
368 377 exit;
369 378 }
... ... @@ -371,6 +380,9 @@ if ($funcao == "listaRSSws2")
371 380 {
372 381 $cp->register('listaRSSws2');
373 382 $cp->start();
  383 + if(ob_get_contents ()){
  384 + ob_end_clean();
  385 + }
374 386 $cp->return_data();
375 387 exit;
376 388 }
... ... @@ -378,6 +390,9 @@ if ($funcao == "listaRSSwsARRAY")
378 390 {
379 391 $cp->register('listaRSSwsARRAY');
380 392 $cp->start();
  393 + if(ob_get_contents ()){
  394 + ob_end_clean();
  395 + }
381 396 $cp->return_data();
382 397 exit;
383 398 }
... ...