summaryrefslogtreecommitdiffstats
path: root/lib/artist.lib.php
diff options
context:
space:
mode:
authorpb1dft <pb1dft@ampache>2007-02-27 18:12:42 +0000
committerpb1dft <pb1dft@ampache>2007-02-27 18:12:42 +0000
commit055195b302f0a2521a8b3a7f57e385a2aa03fdc2 (patch)
tree84077ad5b5912c597b7ff8dd263a9ca8c7629e4d /lib/artist.lib.php
parent28adccb76ae99f07cb8ca9e39355ab916b2b2f83 (diff)
downloadampache-055195b302f0a2521a8b3a7f57e385a2aa03fdc2.tar.gz
ampache-055195b302f0a2521a8b3a7f57e385a2aa03fdc2.tar.bz2
ampache-055195b302f0a2521a8b3a7f57e385a2aa03fdc2.zip
Updated all offset_limit refs to ->pref['offset_limit']
Diffstat (limited to 'lib/artist.lib.php')
-rw-r--r--lib/artist.lib.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/artist.lib.php b/lib/artist.lib.php
index e3acd57d..6d83a442 100644
--- a/lib/artist.lib.php
+++ b/lib/artist.lib.php
@@ -99,7 +99,7 @@ function show_artists ($match = '') {
$offset_limit = 999999;
}
else {
- $offset_limit = $_SESSION['userdata']['offset_limit'];
+ $offset_limit = $user->prefs['offset_limit'];
}
$view = new View($query,'artists.php','name',$total_items,$offset_limit);
hlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/*

 Copyright (c) 2001 - 2007 Ampache.org
 All rights reserved.

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License v2
 as published by the Free Software Foundation.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/
$web_path = Config::get('web_path'); 
?>
<!-- Plugin we've found --> 
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
  <col id="col_name" />
  <col id="col_description" />
  <col id="col_version" />
  <col id="col_action" />
</colgroup>
<tr class="th-top">
	<th class="cel_name"><?php echo _('Name'); ?></th>
	<th class="cel_description"><?php echo _('Description'); ?></th>
	<th class="cel_version"><?php echo _('Version'); ?></th>
	<th class="cel_action"><?php echo _('Action'); ?></th>
</tr>
<?php 
foreach ($plugins as $plugin_name) { 
	$plugin = new Plugin($plugin_name); 
        if (!Plugin::is_installed($plugin->_plugin->name)) {
                $action = "<a href=\"" . $web_path . "/admin/modules.php?action=install_plugin&amp;plugin=" . scrub_out($plugin_name) . "\">" .
                        _('Activate') . "</a>";
        }
        else {
                $action = "<a href=\"" . $web_path . "/admin/modules.php?action=confirm_uninstall_plugin&amp;plugin=" . scrub_out($plugin_name) . "\">" .
                        _('Deactivate') . "</a>";
        }
?>
<tr class="<?php echo flip_class(); ?>">
	<td class="cel_name"><?php echo scrub_out($plugin->_plugin->name); ?></td>
	<td class="cel_description"><?php echo scrub_out($plugin->_plugin->description); ?></td>
	<td class="cel_version"><?php echo scrub_out($plugin->_plugin->version); ?></td>
	<td class="cel_action"><?php echo $action; ?></td>
</tr>
<?php } if (!count($plugins)) { ?>
<tr class="<?php echo flip_class(); ?>">
	<td colspan="4"><span class="error"><?php echo _('No Records Found'); ?></span></td>
</tr>
<?php } ?>
<tr class="th-bottom">
	<th class="cel_name"><?php echo _('Name'); ?></th>
	<th class="cel_description"><?php echo _('Description'); ?></th>
	<th class="cel_version"><?php echo _('Version'); ?></th>
	<th class="cel_action"><?php echo _('Action'); ?></th>
</tr>
</table>
<br />