even if it says something else in the admin column of the article
The bse_make_index background process now uses the console version.
https://rt4.develop-help.com/Ticket/Display.html?id=1301
+ - admin-mode article links now ignore the admin value stored in the
+ article record and always return a link to admin.pl for that
+ article.
+
Bug fixes:
- thumb.pl would return content types with doubled image/ prefixes,
@ISA = qw/Squirrel::Row BSE::TB::SiteCommon BSE::TB::TagOwner/;
use Carp 'confess';
-our $VERSION = "1.010";
+our $VERSION = "1.011";
sub columns {
return qw/id parentid displayOrder title titleImage body
return $link;
}
+sub admin {
+ my ($self) = @_;
+
+ return BSE::Cfg->single->admin_url("admin", { id => $self->id });
+}
+
sub is_linked {
my ($self) = @_;
use BSE::Util::HTML;
use Carp 'confess';
-our $VERSION = "1.001";
+our $VERSION = "1.002";
use base 'DevHelp::Formatter';
my $admin = $self->{gen}{admin_links};
my $url;
if ($admin) {
- $url = $art->{admin};
+ $url = $art->admin;
if (!$self->{gen}{admin}) {
$url .= $url =~ /\?/ ? "&" : "?";
$url .= "admin=0&admin_links=1";