diff options
author | Remi Collet <fedora@famillecollet.com> | 2010-07-11 18:56:05 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2010-07-11 18:56:05 +0200 |
commit | a5fdd45528a85457821ef4739efcd3fc778affde (patch) | |
tree | 46e547df4cc4cdec2edbf061821422e1a9d65873 /scripts | |
parent | e6b48f0d645a72b2b4898f3ddc90fc8437f9b1e2 (diff) |
fix issue with using name containing special char.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/rpmphp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpmphp.js b/scripts/rpmphp.js index 18dfa32..6723438 100644 --- a/scripts/rpmphp.js +++ b/scripts/rpmphp.js @@ -30,7 +30,7 @@ function initZoomJS(name) if ( data.error ) { alert(data.error); } else { - $('#' + name + '_desc').empty().html(data.devel.package.description); + $('#' + 'pkgdb_desc').empty().html(data.devel.package.description); $.each( data, function(k, v){ |