1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Newsfeeds: Fixes #1495. Admin-area rewrite using admin-ui. Newsfeed class is now compatible with PHP7.

This commit is contained in:
Cameron
2016-04-20 17:25:32 -07:00
parent 716678a3b7
commit f6ca9f8883
9 changed files with 376 additions and 258 deletions

View File

@@ -2213,8 +2213,13 @@ class pluginBuilder
{
$this->createFiles = true;
}
if(vartrue($_POST['step']) == 4)
{
$this->step4();
return null;
}
if(vartrue($_GET['step']) == 3)
{
@@ -2222,11 +2227,7 @@ class pluginBuilder
return null;
}
if(vartrue($_POST['step']) == 4)
{
$this->step4();
return null;
}
if(vartrue($_GET['newplugin']) && $_GET['step']==2)
@@ -2856,7 +2857,7 @@ class pluginBuilder
case 'summary-summary':
$help = EPL_ADLAN_142."<br />".EPL_ADLAN_143;
$required = true;
$size = 100;
$size = 130;
$placeholder= " ";
$pattern = "[A-Za-z \.0-9]*";
$xsize = 'block-level';