Ver Mensaje Individual
  #12 (permalink)  
Antiguo 13/01/2009, 17:17
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Respuesta: problema zendx_jquery - AjaxLink

Viendo el source de ZendX/JQuery.php, veo esto:
Código php:
Ver original
  1. class ZendX_JQuery
  2. {
  3.     /**
  4.      * @see [url]http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery[/url]
  5.      * @const string Base path to CDN
  6.      */
  7.     const CDN_BASE_GOOGLE = 'http://ajax.googleapis.com/ajax/libs/jquery/';
  8.  
  9.     /**
  10.      * Always uses compressed version, because this is assumed to be the use case
  11.      * in production enviroment. An uncompressed version has to included manually.
  12.      *
  13.      * @see [url]http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery[/url]
  14.      * @const string File path after base and version
  15.      */
  16.     const CDN_JQUERY_PATH_GOOGLE = '/jquery.min.js';

Modificalo a tu gusto y ya no tendras problema.

Saludos

Última edición por GatorV; 13/01/2009 a las 17:26