Skip to content

Commit

Permalink
Optimized templates editor
Browse files Browse the repository at this point in the history
Fixed several HTML issues

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_ci@11147 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Oct 12, 2011
1 parent 4b1ea4b commit 392e1e0
Show file tree
Hide file tree
Showing 26 changed files with 2,528 additions and 2,215 deletions.
20 changes: 19 additions & 1 deletion application/controllers/admin/questiongroup.php
Expand Up @@ -252,7 +252,7 @@ function edit($surveyid,$gid)

$surveyid = sanitize_int($surveyid);
$gid = sanitize_int($gid);

if(bHasSurveyPermission($surveyid,'surveycontent','read'))
{

Expand Down Expand Up @@ -379,6 +379,24 @@ function edit($surveyid,$gid)
self::_getAdminFooter("http://docs.limesurvey.org", $this->limesurvey_lang->gT("LimeSurvey online manual"));
}


/**
* questiongroup::organize()
* Load ordering of question group screen.
* @return
*/
function organize($surveyid)
{
$surveyid= (int)$surveyid;
$this->load->model('groups_model');
$aGrouplist=$this->groups_model->getGroups($surveyid);
foreach($aGrouplist as $aGroup)
{

}
}


/**
* questiongroup::order()
* Load ordering of question group screen.
Expand Down
901 changes: 437 additions & 464 deletions application/controllers/admin/templates.php

Large diffs are not rendered by default.

0 comments on commit 392e1e0

Please sign in to comment.