To people with coding skill...
This is a rundown of ALL changes between .17 and .16 that seem relevant to me.
1— com_alphacontent/backend/configuration/
configuration.php
Line 51 —>
.17 =
var $list_sizewebsnapr = 's';
.16 =
var $list_sizewebsnapr = 'CHANGE START—>S[/color]<—CHANGE END';
2— com_alphacontent/backend/install/plugins/plugin_content/
alphacontent.php
Line 33 down
.17 =
@session_start();
if ( @$_SESSION['acdirectory']!='' ){
$selectedDirectory = @$_SESSION['acdirectory'];
} else return;
$id = $article->id;
$option = JRequest::getVar ( 'option', '', 'GET', 'string' );
$layout = JRequest::getVar ( 'layout', '', 'GET', 'string' );
$Itemid = JRequest::getVar ( 'Itemid', 0, 'GET', 'int' );
$ratingbar = "";
$googlemaps = "";
AND MORE..............................
.16 =
if ( @$_SESSION['acdirectory']!='' ){
$selectedDirectory = @$_SESSION['acdirectory'];
} CHANGE START—>//<—CHANGE END else return;
$id = $article->id;
AND MORE..............................
3— com_alphacontent/backend/install/plugins/plugin_system/
alphacontentsys.php
Line 49 down
.17=
if ( $option != 'com_content' || $[b][color=#ff0000]option != 'com_alphacontent' || $[/color][/b]app->isAdmin() ) {
CHANGE START—>//@ <—CHANGE END $_SESSION['acdirectory']='';
.16=
if ( $option != 'com_content' || $app->isAdmin() ) {
$_SESSION['acdirectory']='';
4—com_alphacontent/backend/views/alphacontent/view.html.php
line 207 down
.17=
CHANGE START—>//<—CHANGE END $options[] = JHTML::_('select.option', 'AC', JText::_( 'AC_GENERAL_WIDTH_IMAGE' ));
$options[] = JHTML::_('select.option', 'CHANGE START—>t'<—CHANGE END, JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_MICRO' ) . ' (90x70)' );
$options[] = JHTML::_('select.option', 'CHANGE START—>s'<—CHANGE END', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_SMALL' ) . ' (202x152)' );
CHANGE START—>// <—CHANGE END $options[] = JHTML::_('select.option', 'M', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_MEDIUM' ) . ' (400x300)' );
CHANGE START—>// <—CHANGE END $options[] = JHTML::_('select.option', 'L', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_LARGE' ) . ' (640x480)' );
$
.16=
$options = array();
$options[] = JHTML::_('select.option', 'AC', JText::_( 'AC_GENERAL_WIDTH_IMAGE' ));
$options[] = JHTML::_('select.option', 'T', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_MICRO' ) . ' (92x70)' );
$options[] = JHTML::_('select.option', 'S', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_SMALL' ) . ' (202x152)' );
$options[] = JHTML::_('select.option', 'M', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_MEDIUM' ) . ' (400x300)' );
$options[] = JHTML::_('select.option', 'L', JText::_( 'AC_WEBSNAPR' ) . ' ' . JText::_( 'AC_LARGE' ) . ' (640x480)' );
$
5— com_alphacontent/frontend/models/
listing.php
Line 697
.17=
CHANGE START—> // " CONCAT(a.con_position, '<br />', a.address, '<br />', a.suburb, ' ', a.state, ' ', a.postcode, '<br />', a.telephone) AS text," .<—CHANGE END
6— com_alphacontent/frontend/views/alphacontent/tmpl/
default.php
Line 615 down
.17=
CHANGE START—> /* <—CHANGE END
$forcewidth = "width=\"" . $params->get('list_widthimage') . "px\"";
if ( $params->get('list_keywebsnapr') && $params->get('list_sizewebsnapr', 'AC')!='AC') {
$sizewebsnapr = "size=".$params->get('list_sizewebsnapr');
$sizewebsnapr .= "&key=".$params->get('list_keywebsnapr');
$forcewidth = "";
} else $sizewebsnapr = "size=s";
$linkimgsrc = "<a href=\"" . $listing[$i]->href . "\" target=\"_blank\">"
. "<img src=\"http://images.websnapr.com/?".$sizewebsnapr."&url=" . $listing[$i]->reallink . "\" alt=\"" . $listing[$i]->reallink . "\" $forcewidth />"
. "</a>";
CHANGE START—> */
if ( $params->get('list_keywebsnapr')!='' ) {
$document =& JFactory::getDocument();
$document->addScript("http://www.websnapr.com/js/websnapr.js");
$size_wsr = $params->get('list_sizewebsnapr', 's');
$linkimgsrc = "<a href=\"" . $listing[$i]->href . "\" target=\"_blank\">"
. "<script type=\"text/javascript\">wsr_snapshot('" . $listing[$i]->reallink . "', '".$params->get('list_keywebsnapr')."', '".$size_wsr."');</script>"
. "</a>";
} else $linkimgsrc = ""; <—CHANGE END
} elseif
7— com_alphacontent/frontend/views/alphacontent/
view.html.php
Line 36 down
My comparative programm see a difference here???? — I don’t see it ( I will replace the file 16 to 17 (just to see) I think it’s space added in the .16 end of this code...
.17
if ( $this->params->get('showalphabeticalbar') ) {
$this->alphabeticalbar = $this->_getAlphabeticalBar( $this->alphabeticalbar, $this->params, $this->url_alphacontent );
}
.16
if ( $this->params->get('showalphabeticalbar') ) {
$this->alphabeticalbar = $this->_getAlphabeticalBar( $this->alphabeticalbar, $this->params, $this->url_alphacontent );
}
That’s the only major difference betwenn the 2 versions...