Ignore:
Timestamp:
Apr 1, 2010, 9:05:29 PM (14 years ago)
Author:
grum
Message:

Update the plugin for compatibility with Piwigo 2.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/lmt/admin/plugin_admin_list.tpl

    r4396 r5548  
    33  function loadpage(pagenum)
    44  {
    5     http_request=create_httpobject('get', '', '{/literal}{$datas.LMT_AJAX_URL_LIST}{literal}'+pagenum+"&filter="+$("#filter").val(), false);
    6     http_request.send(null);
    7 
    8     tmp=http_request.responseText;
     5    tmp=$.ajax({
     6      type: "POST",
     7      url: "{/literal}{$datas.LMT_AJAX_URL_LIST}{literal}"+pagenum+"&filter="+$("#filter").val(),
     8      async: false,
     9     }).responseText;
    910
    1011    $("#nbphotos").attr("innerHTML", tmp.substr(0,tmp.indexOf("#")));
Note: See TracChangeset for help on using the changeset viewer.